summaryrefslogtreecommitdiffstats
path: root/templates/pagelistByYear.html
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2020-12-28 21:34:30 +0100
committerVolpeon <git@volpeon.ink>2020-12-28 21:34:30 +0100
commit5ab5e6a4781c53aade17a9a98e123762691205c6 (patch)
treec8a1eed27676e2118a8a44270a9ffa82e9e98b13 /templates/pagelistByYear.html
parentExport pages grouped by year as array instead of object (diff)
downloadvolpeon.ink-5ab5e6a4781c53aade17a9a98e123762691205c6.tar.gz
volpeon.ink-5ab5e6a4781c53aade17a9a98e123762691205c6.tar.bz2
volpeon.ink-5ab5e6a4781c53aade17a9a98e123762691205c6.zip
Handle blog entry categories
Diffstat (limited to 'templates/pagelistByYear.html')
-rw-r--r--templates/pagelistByYear.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/pagelistByYear.html b/templates/pagelistByYear.html
index 972bacc..20ce6c4 100644
--- a/templates/pagelistByYear.html
+++ b/templates/pagelistByYear.html
@@ -1,9 +1,11 @@
1$for(pages)$ 1$for(pages)$
2$for(it.by_year)$ 2$for(it.by_year)$
3$-- <hr class="c-spacer" />
4$-- <h2>$it.key$</h2>
3<ul class="s-refs"> 5<ul class="s-refs">
4 $for(it.value)$ 6 $for(it.value)$
5 <li> 7 <li>
6 <a href="$it.url_rel$">$it.date$ - $it.title$</a> 8 <a href="$it.url_rel$">$it.category/uppercase$ $it.date$ - $it.title$</a>
7 </li> 9 </li>
8 $endfor$ 10 $endfor$
9</ul> 11</ul>