diff options
Diffstat (limited to 'templates/list.html')
-rw-r--r-- | templates/list.html | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/templates/list.html b/templates/list.html deleted file mode 100644 index d74681c..0000000 --- a/templates/list.html +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | $body$ | ||
2 | |||
3 | $if(categories)$ | ||
4 | <ul class="c-hlist"> | ||
5 | $for(categories)$ | ||
6 | <li class="c-hlist__item"><strong>$it.key/uppercase$</strong> $it.value.name$</li> | ||
7 | $endfor$ | ||
8 | </ul> | ||
9 | $endif$ | ||
10 | |||
11 | $for(pages.by_year)$ | ||
12 | <ul> | ||
13 | $for(it.value)$ | ||
14 | <li class="c-page__prefixed c-page__prefixed--ref"> | ||
15 | <a href="$it.url.rel$">$it.category/uppercase$ $it.date.yyyy_mm_dd$ - $it.title$</a> | ||
16 | </li> | ||
17 | $endfor$ | ||
18 | </ul> | ||
19 | $endfor$ | ||
20 | |||