summaryrefslogtreecommitdiffstats
path: root/templates/pagelistByYear.html
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2020-12-29 12:24:04 +0100
committerVolpeon <git@volpeon.ink>2020-12-29 12:24:04 +0100
commit381297c95c7446182e90e459cd0257a8fc86b4cf (patch)
tree5a330a18ea60d983bc6f05976295a316a8ad7a24 /templates/pagelistByYear.html
parentHandle blog entry categories (diff)
downloadvolpeon.ink-381297c95c7446182e90e459cd0257a8fc86b4cf.tar.gz
volpeon.ink-381297c95c7446182e90e459cd0257a8fc86b4cf.tar.bz2
volpeon.ink-381297c95c7446182e90e459cd0257a8fc86b4cf.zip
Improved CSS classes for page content, added proper ref list macro, build scripts load and watch Pandoc filters automatically
Diffstat (limited to 'templates/pagelistByYear.html')
-rw-r--r--templates/pagelistByYear.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/pagelistByYear.html b/templates/pagelistByYear.html
index 20ce6c4..b884d89 100644
--- a/templates/pagelistByYear.html
+++ b/templates/pagelistByYear.html
@@ -2,9 +2,9 @@ $for(pages)$
2$for(it.by_year)$ 2$for(it.by_year)$
3$-- <hr class="c-spacer" /> 3$-- <hr class="c-spacer" />
4$-- <h2>$it.key$</h2> 4$-- <h2>$it.key$</h2>
5<ul class="s-refs"> 5<ul>
6 $for(it.value)$ 6 $for(it.value)$
7 <li> 7 <li class="c-page__prefixed c-page__prefixed--ref">
8 <a href="$it.url_rel$">$it.category/uppercase$ $it.date$ - $it.title$</a> 8 <a href="$it.url_rel$">$it.category/uppercase$ $it.date$ - $it.title$</a>
9 </li> 9 </li>
10 $endfor$ 10 $endfor$