diff options
author | Volpeon <git@volpeon.ink> | 2021-05-12 08:58:19 +0200 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2021-05-12 08:58:19 +0200 |
commit | 87fbb058af5d3f6d4cfc5bcb2da4fa9a99b3b627 (patch) | |
tree | a308dd87c95ba0cd2f2673fe833660f784c4f245 /templates/layouts/categorized_list.html | |
parent | Design update (diff) | |
download | volpeon.ink-87fbb058af5d3f6d4cfc5bcb2da4fa9a99b3b627.tar.gz volpeon.ink-87fbb058af5d3f6d4cfc5bcb2da4fa9a99b3b627.tar.bz2 volpeon.ink-87fbb058af5d3f6d4cfc5bcb2da4fa9a99b3b627.zip |
Design
Diffstat (limited to 'templates/layouts/categorized_list.html')
-rw-r--r-- | templates/layouts/categorized_list.html | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/templates/layouts/categorized_list.html b/templates/layouts/categorized_list.html index 5dddc55..ef9e061 100644 --- a/templates/layouts/categorized_list.html +++ b/templates/layouts/categorized_list.html | |||
@@ -12,17 +12,18 @@ $body$ | |||
12 | $it.name$ | 12 | $it.name$ |
13 | </h2> | 13 | </h2> |
14 | $for(it.pages)$ | 14 | $for(it.pages)$ |
15 | <a href="$it.url.rel$" class="c-post-list__post"> | 15 | <a href="$it.url.rel$" class="c-post-list__post c-card"> |
16 | <span class="c-post-list__post-title"> | 16 | <div class="c-card__content"> |
17 | $it.title$ | 17 | <strong class="c-post-list__post-title u-db">$it.title$</strong> |
18 | </span> | 18 | </div> |
19 | |||
20 | $if(it.category.show_date)$ | 19 | $if(it.category.show_date)$ |
21 | <time datetime="$it.date.yyyy_mm_dd$" class="c-post-list__post-date u-dn@sm-hi"> | 20 | <time datetime="$it.date.yyyy_mm_dd$" class="c-post-list__post-date c-card__content"> |
22 | $it.date.short$ | 21 | <span class="u-dn@sm-hi"> |
23 | </time> | 22 | $it.date.short$ |
24 | <time datetime="$it.date.yyyy_mm_dd$" class="c-post-list__post-date u-dn@sm-lo"> | 23 | </span> |
25 | $it.date.long$ | 24 | <span class="u-dn@sm-lo"> |
25 | $it.date.long$ | ||
26 | </span> | ||
26 | </time> | 27 | </time> |
27 | $endif$ | 28 | $endif$ |
28 | </a> | 29 | </a> |