aboutsummaryrefslogtreecommitdiff
path: root/templates/list.html
blob: df04ffe4a73c486b928787a7f92218548ff31b3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!doctype html5>
<html>
{{> head.html}}
<body>
{{> header.html}}
<h1>
{{?htag}}
  Category listing:
  {{#htag}}
  <a class="cards-tagpiece" 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 class="cards-subcategories">
  {{#subtags}}
  <li><a href="{{href}}">{{#tags}} » {{.}} {{/tags}}</a></li>
  {{/subtags}}
  </ul>
{{/subtags}}
{{?pages}}
  <h3>Cards</h3>
  <ul class="cards-list">
  {{#pages}}
  <li><a href="{{href}}">{{meta.title}}</a></li>
  {{/pages}}
  </ul>
{{/pages}}
{{> footer.html}}
</body>
</html>