reploy/templates/tag.html
2023-06-07 00:01:14 +02:00

36 lines
612 B
HTML

<!doctype html5>
<html>
{{> head.html}}
<body>
{{> header.html}}
<h1>
{{?htag}}
Category:
{{#htag}}
<a class="cards-tagpiece" href="{{href}}">
{{^tag}}all{{/tag}}
{{?tag}}» {{tag}}{{/tag}}
</a>
{{/htag}}
{{/htag}}
{{^htag}}All cards{{/htag}}
</h1>
{{?subtags}}<h2>Sub-categories</h2>
<ul class="cards-subcategories">
{{#subtags}}
<li><a href="{{href}}">{{#tags}} » {{.}} {{/tags}}</a></li>
{{/subtags}}
</ul>
{{/subtags}}
{{?pages}}
<h2>Cards</h2>
<ul class="cards-list">
{{#pages}}
<li><a href="{{href}}">{{meta.title}}</a></li>
{{/pages}}
</ul>
{{/pages}}
{{> footer.html}}
</body>
</html>