mirror of
https://github.com/cupcakearmy/cometa.git
synced 2025-03-12 22:37:28 +00:00
35 lines
332 B
HTML
35 lines
332 B
HTML
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<h1>{{title}}</h1>
|
|
|
|
{{# Ignore Me! #}}
|
|
|
|
<ul>
|
|
{{* i in arr}}
|
|
|
|
{{? i.show }}
|
|
<li>
|
|
{{i.msg}}
|
|
|
|
{{? i.comments}}
|
|
<ul>
|
|
|
|
{{* comment in i.comments}}
|
|
<li>{{comment}}</li>
|
|
{{/*}}
|
|
|
|
</ul>
|
|
{{/?}}
|
|
</li>
|
|
{{/?}}
|
|
|
|
{{/*}}
|
|
</ul>
|
|
|
|
</body>
|
|
|
|
</html> |