diff options
| author | Volpeon <git@volpeon.ink> | 2022-06-16 13:42:26 +0200 |
|---|---|---|
| committer | Volpeon <git@volpeon.ink> | 2022-06-16 13:42:26 +0200 |
| commit | aa4c54317b51dc14ba65d2e091b701ae6640ee80 (patch) | |
| tree | 1b78a533299bc1d39e4c2eef611396a241e685c7 /templates/layouts/list.html | |
| parent | Update (diff) | |
| download | volpeon.ink-aa4c54317b51dc14ba65d2e091b701ae6640ee80.tar.gz volpeon.ink-aa4c54317b51dc14ba65d2e091b701ae6640ee80.tar.bz2 volpeon.ink-aa4c54317b51dc14ba65d2e091b701ae6640ee80.zip | |
WIP: Adding metadata
Diffstat (limited to 'templates/layouts/list.html')
| -rw-r--r-- | templates/layouts/list.html | 40 |
1 files changed, 22 insertions, 18 deletions
diff --git a/templates/layouts/list.html b/templates/layouts/list.html index ebbc2d4..105c7f5 100644 --- a/templates/layouts/list.html +++ b/templates/layouts/list.html | |||
| @@ -1,23 +1,27 @@ | |||
| 1 | <div class="l-container l-container--pad-x l-container--pad-y l-container--narrow"> | 1 | <main itemprop="mainPart" itemscope itemtype="https://schema.org/DataFeed" itemid="$url.full$"> |
| 2 | <header class="s-colored-links"> | 2 | <div class="l-container l-container--pad-x l-container--pad-y l-container--narrow"> |
| 3 | <h1 class="o-heading o-heading--xxl u-mt-0"><span class="o-heading__primary">$title$</span></h1> | 3 | <header class="s-colored-links"> |
| 4 | <h1 class="o-heading o-heading--xxl u-mt-0 p-name" itemprop="name headline"> | ||
| 5 | <span class="o-heading__primary">$title$</span> | ||
| 6 | </h1> | ||
| 4 | 7 | ||
| 5 | $body$ | 8 | $body$ |
| 6 | </header> | 9 | </header> |
| 7 | 10 | ||
| 8 | <div class="l-card-list"> | 11 | <div class="l-card-list"> |
| 9 | <div class="l-card-list__cards l-card-list__cards--$list_layout.id$"> | 12 | <div class="l-card-list__cards l-card-list__cards--$list_layout.id$"> |
| 10 | $if(list_layout.is_grid-2)$ | 13 | $if(list_layout.is_grid-2)$ |
| 11 | $list:partials/grid_card()$ | 14 | $list:partials/grid_card()$ |
| 12 | $elseif(list_layout.is_grid-3)$ | 15 | $elseif(list_layout.is_grid-3)$ |
| 13 | $list:partials/grid_card()$ | 16 | $list:partials/grid_card()$ |
| 14 | $elseif(list_layout.is_gallery-2)$ | 17 | $elseif(list_layout.is_gallery-2)$ |
| 15 | $list:partials/gallery_card()$ | 18 | $list:partials/gallery_card()$ |
| 16 | $elseif(list_layout.is_gallery-3)$ | 19 | $elseif(list_layout.is_gallery-3)$ |
| 17 | $list:partials/gallery_card()$ | 20 | $list:partials/gallery_card()$ |
| 18 | $else$ | 21 | $else$ |
| 19 | $list:partials/list_card()$ | 22 | $list:partials/list_card()$ |
| 20 | $endif$ | 23 | $endif$ |
| 24 | </div> | ||
| 21 | </div> | 25 | </div> |
| 22 | </div> | 26 | </div> |
| 23 | </div> | 27 | </main> |
