35 lines
332 B
HTML
Raw Normal View History

2018-02-07 11:57:20 +01:00
<!doctype html>
<html>
<body>
<h1>{{title}}</h1>
2018-02-21 12:44:20 +01:00
{{# Ignore Me! #}}
2018-02-07 11:57:20 +01:00
<ul>
{{* i in arr}}
{{? i.show }}
2018-02-21 12:44:20 +01:00
<li>
{{i.msg}}
{{? i.comments}}
<ul>
{{* comment in i.comments}}
<li>{{comment}}</li>
{{/*}}
</ul>
{{/?}}
</li>
2018-02-07 11:57:20 +01:00
{{/?}}
{{/*}}
</ul>
</body>
</html>