scratch/output/Scratch/en/blog/Yesod-tutorial-for-newbies/code/articles.hamlet
Yann Esposito (Yogsototh) b4f9938fa7 Corrected some errors
2012-02-25 10:28:26 +01:00

16 lines
449 B
Text

<h1> Articles
$if null articles
-- Show a standard message if there is no article
<p> There are no articles in the blog
$else
-- Show the list of articles
<ul>
$forall Entity articleId article <- articles
<li>
<a href=@{ArticleR articleId} > #{articleTitle article}
<hr>
<form method=post enctype=#{enctype}>
^{articleWidget}
<div>
<input type=submit value="Post New Article">