summaryrefslogtreecommitdiffstats
path: root/templates/layouts/categorized_list.html
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2021-05-16 08:48:48 +0200
committerVolpeon <git@volpeon.ink>2021-05-16 08:48:48 +0200
commit670cfcf0bbb5c1651e14a69a6500fd41e9e9efd8 (patch)
treee9de5261aac6998227503f8d5b14c91e0e6ec37b /templates/layouts/categorized_list.html
parentUse prefers-color-scheme media query (diff)
downloadvolpeon.ink-670cfcf0bbb5c1651e14a69a6500fd41e9e9efd8.tar.gz
volpeon.ink-670cfcf0bbb5c1651e14a69a6500fd41e9e9efd8.tar.bz2
volpeon.ink-670cfcf0bbb5c1651e14a69a6500fd41e9e9efd8.zip
Design adjustments
Diffstat (limited to 'templates/layouts/categorized_list.html')
-rw-r--r--templates/layouts/categorized_list.html36
1 files changed, 19 insertions, 17 deletions
diff --git a/templates/layouts/categorized_list.html b/templates/layouts/categorized_list.html
index f2dbbc4..1a074e4 100644
--- a/templates/layouts/categorized_list.html
+++ b/templates/layouts/categorized_list.html
@@ -11,23 +11,25 @@ $body$
11 <h2 class="c-post-list__category-header"> 11 <h2 class="c-post-list__category-header">
12 $it.name$ 12 $it.name$
13 </h2> 13 </h2>
14 $for(it.pages)$ 14 <div class="c-post-list__category-content">
15 <a href="$it.url.rel$" class="c-post-list__post c-card"> 15 $for(it.pages)$
16 <div class="c-card__content c-post-list__post-title"> 16 <a href="$it.url.rel$" class="c-post-list__post c-card">
17 $it.title$ 17 <div class="c-card__content c-post-list__post-title">
18 </div> 18 $it.title$
19 $if(it.category.show_date)$ 19 </div>
20 <time datetime="$it.date.yyyy_mm_dd$" class="c-post-list__post-date c-card__content"> 20 $if(it.category.show_date)$
21 <span class="u-dn@sm-hi"> 21 <time datetime="$it.date.yyyy_mm_dd$" class="c-post-list__post-date c-card__content">
22 $it.date.short$ 22 <span class="u-dn@sm-hi">
23 </span> 23 $it.date.short$
24 <span class="u-dn@sm-lo"> 24 </span>
25 $it.date.long$ 25 <span class="u-dn@sm-lo">
26 </span> 26 $it.date.long$
27 </time> 27 </span>
28 $endif$ 28 </time>
29 </a> 29 $endif$
30 $endfor$ 30 </a>
31 $endfor$
32 </div>
31 $endfor$ 33 $endfor$
32 </div> 34 </div>
33 </div> 35 </div>