v/tutorials/building_a_simple_web_blog_.../code/blog/index.html

17 lines
239 B
HTML
Raw Normal View History

2019-12-14 03:31:09 +01:00
<html>
<header>
<title>V Blog</title>
</header>
<body>
user id = @app.user_id <br>
2019-12-14 03:31:09 +01:00
@for article in articles
<div>
<b>@article.title</b> <br>
@article.text
</div>
2020-07-04 18:56:18 +02:00
<br>
2019-12-14 03:31:09 +01:00
@end
2019-12-14 22:55:05 +01:00
<a href='/new'>New article</a>
2019-12-14 03:31:09 +01:00
</body>
</html>