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

17 lines
235 B
HTML

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