v/tutorials/code/blog/index.html

17 lines
207 B
HTML
Raw Normal View History

2019-12-14 03:31:09 +01: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 22:55:05 +01:00
<br>
<a href='/new'>New article</a>
2019-12-14 03:31:09 +01:00
</body>
</html>