her.esy.fun/src/Scratch/en/blog/Yesod-tutorial-for-newbies/code/articles.hamlet
2021-04-18 12:23:24 +02:00

16 lines
448 B
Plaintext

<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">