v/tutorials/code/blog/index.html

17 lines
207 B
HTML
Raw Normal View History

2019-12-14 02:31:09 +00:00
<html>
<header>
<title>V Blog</title>
</header>
<body>
@for article in articles
<div>
<b>@article.title</b> <br>
@article.text
</div>
@end
2019-12-14 21:55:05 +00:00
<br>
<a href='/new'>New article</a>
2019-12-14 02:31:09 +00:00
</body>
</html>