1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tutorial: minor fixes

This commit is contained in:
Alexander Medvednikov
2019-12-14 18:59:02 +03:00
parent 94de493b37
commit 45695543ba
3 changed files with 6 additions and 2 deletions

View File

@ -0,0 +1,14 @@
<html>
<header>
<title>V Blog</title>
</header>
<body>
@for article in articles
<div>
<b>@article.title</b> <br>
@article.text
</div>
@end
</body>
</html>