mirror of
https://github.com/cupcakearmy/cometa.git
synced 2025-03-13 06:47:28 +00:00
21 lines
165 B
HTML
21 lines
165 B
HTML
|
<!doctype html>
|
||
|
|
||
|
<html>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<h1>{{title}}</h1>
|
||
|
|
||
|
<ul>
|
||
|
{{* i in arr}}
|
||
|
|
||
|
{{? i.show }}
|
||
|
<li>{{i.msg}}</li>
|
||
|
{{/?}}
|
||
|
|
||
|
{{/*}}
|
||
|
</ul>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|