v/tutorials/code/blog/index.html

15 lines
169 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
</body>
</html>