aboutsummaryrefslogtreecommitdiff
path: root/templates/list.html
blob: 8fe58e4f2e5abd004863153d4d90cf31e75ac2ec (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
<!doctype html5>
<html>
{{> head.html}}
<body>
{{> header.html}}
<h1>
  Category listing:
  {{#htag}}
  <a href="{{href}}">
    {{?name}}» {{name}}{{/name}}
  </a>
  {{/htag}}
</h1>
<p>See the <a href="{{taghref}}">hierarchical view of this category</a>.</p>
{{?subtags}}<h3>Sub-categories</h3>
  <ul>
  {{#subtags}}
  <li>{{name}} (<a href="{{href}}">{{#htag}} » {{name}} {{/htag}}</a>)</li>
  {{/subtags}}
  </ul>
{{/subtags}}
{{?pages}}
  <h3>Pages</h3>
  <ul>
  {{#pages}}
  <li><a href="{{href}}">{{meta.title}}</a></li>
  {{/pages}}
  </ul>
{{/pages}}
</body>
</html>