reploy/templates/list.html

35 lines
603 B
HTML

<!doctype html5>
<html>
{{> head.html}}
<body>
{{> header.html}}
<h1>
{{?htag}}
Category listing:
{{#htag}}
<a href="{{href}}">
{{^tag}}all{{/tag}}
{{?tag}}» {{tag}}{{/tag}}
</a>
{{/htag}}
{{/htag}}
</h1>
<p>See the <a href="{{taghref}}">hierarchical view of this category</a>.</p>
{{?subtags}}<h3>Sub-categories</h3>
<ul>
{{#subtags}}
<li><a href="{{href}}">{{#tags}} » {{.}} {{/tags}}</a></li>
{{/subtags}}
</ul>
{{/subtags}}
{{?pages}}
<h3>Cards</h3>
<ul>
{{#pages}}
<li><a href="{{href}}">{{meta.title}}</a></li>
{{/pages}}
</ul>
{{/pages}}
</body>
</html>