1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/tutorials/code/blog/index.html
2019-12-15 00:56:08 +03:00

17 lines
207 B
HTML

<html>
<header>
<title>V Blog</title>
</header>
<body>
@for article in articles
<div>
<b>@article.title</b> <br>
@article.text
</div>
@end
<br>
<a href='/new'>New article</a>
</body>
</html>