diff options
| author | Volpeon <git@volpeon.ink> | 2021-11-14 09:28:25 +0100 |
|---|---|---|
| committer | Volpeon <git@volpeon.ink> | 2021-11-14 09:28:25 +0100 |
| commit | ac027192285ad741b3ac1b837e1c363beb8f3791 (patch) | |
| tree | 7f00bf8cb177ce844a9deb8f2a8dbe0bed721edd /templates/layouts/list.html | |
| parent | Update (diff) | |
| download | volpeon.ink-ac027192285ad741b3ac1b837e1c363beb8f3791.tar.gz volpeon.ink-ac027192285ad741b3ac1b837e1c363beb8f3791.tar.bz2 volpeon.ink-ac027192285ad741b3ac1b837e1c363beb8f3791.zip | |
Generate special list metadata
Diffstat (limited to 'templates/layouts/list.html')
| -rw-r--r-- | templates/layouts/list.html | 64 |
1 files changed, 2 insertions, 62 deletions
diff --git a/templates/layouts/list.html b/templates/layouts/list.html index b4647a1..7a9d573 100644 --- a/templates/layouts/list.html +++ b/templates/layouts/list.html | |||
| @@ -8,71 +8,11 @@ $body$ | |||
| 8 | <div class="c-card-list"> | 8 | <div class="c-card-list"> |
| 9 | $if(list_grid)$ | 9 | $if(list_grid)$ |
| 10 | <div class="c-card-list__category-content c-card-list__category-content--grid"> | 10 | <div class="c-card-list__category-content c-card-list__category-content--grid"> |
| 11 | $for(pages.all)$ | 11 | $list:partials/grid_card()$ |
| 12 | <a href="$it.url.rel$" class="c-card-list__card c-card"> | ||
| 13 | $if(list_read_indicators)$ | ||
| 14 | <div class="c-card__block c-card__block--indicator"></div> | ||
| 15 | $endif$ | ||
| 16 | $if(icon)$ | ||
| 17 | <svg class="c-card__block o-icon"> | ||
| 18 | <use href="/symbols.svg#icon-$icon$"></use> | ||
| 19 | </svg> | ||
| 20 | $endif$ | ||
| 21 | <div class="c-card__block c-card__block--main"> | ||
| 22 | $if(it.date)$ | ||
| 23 | <time datetime="$it.date.yyyy_mm_dd$"> | ||
| 24 | <small class="u-dn@sm-hi"> | ||
| 25 | $it.date.short$ | ||
| 26 | </small> | ||
| 27 | <small class="u-dn@sm-lo"> | ||
| 28 | $it.date.long$ | ||
| 29 | </small> | ||
| 30 | </time> | ||
| 31 | <strong class="u-db">$it.title$</strong> | ||
| 32 | $else$ | ||
| 33 | $it.title$ | ||
| 34 | $endif$ | ||
| 35 | </div> | ||
| 36 | $if(list_icon)$ | ||
| 37 | <svg class="c-card__block o-icon" width="1em" height="1em"> | ||
| 38 | <use href="/symbols.svg#$list_icon$"></use> | ||
| 39 | </svg> | ||
| 40 | $endif$ | ||
| 41 | </a> | ||
| 42 | $endfor$ | ||
| 43 | </div> | 12 | </div> |
| 44 | $else$ | 13 | $else$ |
| 45 | <div class="c-card-list__category-content"> | 14 | <div class="c-card-list__category-content"> |
| 46 | $for(pages.all)$ | 15 | $list:partials/list_card()$ |
| 47 | <a href="$it.url.rel$" class="c-card-list__card c-card"> | ||
| 48 | $if(list_read_indicators)$ | ||
| 49 | <div class="c-card__block c-card__block--indicator"></div> | ||
| 50 | $endif$ | ||
| 51 | $if(icon)$ | ||
| 52 | <svg class="c-card__block o-icon"> | ||
| 53 | <use href="/symbols.svg#icon-$icon$"></use> | ||
| 54 | </svg> | ||
| 55 | $endif$ | ||
| 56 | <div class="c-card__block c-card__block--main"> | ||
| 57 | $it.title$ | ||
| 58 | </div> | ||
| 59 | $if(it.date)$ | ||
| 60 | <time datetime="$it.date.yyyy_mm_dd$" class="c-card__block u-fs0"> | ||
| 61 | <small class="u-dn@sm-hi"> | ||
| 62 | $it.date.short$ | ||
| 63 | </small> | ||
| 64 | <small class="u-dn@sm-lo"> | ||
| 65 | $it.date.long$ | ||
| 66 | </small> | ||
| 67 | </time> | ||
| 68 | $endif$ | ||
| 69 | $if(list_icon)$ | ||
| 70 | <svg class="c-card__block o-icon" width="1em" height="1em"> | ||
| 71 | <use href="/symbols.svg#$list_icon$"></use> | ||
| 72 | </svg> | ||
| 73 | $endif$ | ||
| 74 | </a> | ||
| 75 | $endfor$ | ||
| 76 | </div> | 16 | </div> |
| 77 | $endif$ | 17 | $endif$ |
| 78 | </div> | 18 | </div> |
