diff options
author | Volpeon <git@volpeon.ink> | 2021-01-07 08:50:48 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2021-01-07 08:50:48 +0100 |
commit | ad478954cf77842364d03e1d5ee85e366e699ee7 (patch) | |
tree | 90359dfec83694a758878b37510d9dca1493ef43 /templates/list.html | |
parent | Improved subpage organization code in metadata filter (diff) | |
download | volpeon.ink-ad478954cf77842364d03e1d5ee85e366e699ee7.tar.gz volpeon.ink-ad478954cf77842364d03e1d5ee85e366e699ee7.tar.bz2 volpeon.ink-ad478954cf77842364d03e1d5ee85e366e699ee7.zip |
Improved general structure, resolve category name in metadata filter, added hideable nav items, added header for page layout
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 | |||