scratch/output/Scratch/en/blog/Yesod-tutorial-for-newbies/code/articles.hamlet

17 lines
449 B
Text
Raw Normal View History

2012-01-18 13:12:04 +00:00
<h1> Articles
$if null articles
-- Show a standard message if there is no article
2012-01-20 22:08:31 +00:00
<p> There are no articles in the blog
2012-01-18 13:12:04 +00:00
$else
-- Show the list of articles
<ul>
2012-02-20 14:41:09 +00:00
$forall Entity articleId article <- articles
2012-01-18 13:12:04 +00:00
<li>
2012-02-20 14:41:09 +00:00
<a href=@{ArticleR articleId} > #{articleTitle article}
2012-02-25 09:28:26 +00:00
<hr>
2012-01-18 13:12:04 +00:00
<form method=post enctype=#{enctype}>
^{articleWidget}
<div>
<input type=submit value="Post New Article">