diff options
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> |