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

24 lines
194 B
HTML
Raw Normal View History

2021-09-21 07:53:42 +03:00
@include 'header.html'
Test <b>app</b>
2019-09-20 03:01:52 +03:00
<br>
<h1>@hello</h1>
2019-09-20 03:01:52 +03:00
<hr>
2021-09-21 07:53:42 +03:00
If demo: <br>
@if show
show = true
@end
2021-09-21 07:53:42 +03:00
<br><br>
For loop demo: <br>
@for number in numbers
@number <br>
@end
<hr>
End.