scratch/output/Scratch/fr/blog/Yesod-tutorial-for-newbies/code/articles.hamlet
Yann Esposito (Yogsototh) 98974f455d Add file to download
2012-01-18 14:12:04 +01:00

16 lines
424 B
Text

<h1> Articles
$if null articles
-- Show a standard message if there is no article
<p>_{MsgNoEntries}
$else
-- Show the list of articles
<ul>
$forall article <- articles
<li>
<a href=@{ArticleR (fst article)} > #{articleTitle (snd article)}
<hr/>
<form method=post enctype=#{enctype}>
^{articleWidget}
<div>
<input type=submit value="Post New Article">