summaryrefslogtreecommitdiffstats
path: root/templates/layouts/list.html
blob: bc12805e98016ae2c6237619b85c8929db6adb76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="l-container l-container--pad-x l-container--pad-y l-container--content">      
    <header class="s-headlines s-colored-links">
        <h1 class="u-mt0"><span class="s-headlines__title-inner">$title$</span></h1>

$body$
    </header>

    <div class="l-card-list">
        <div class="l-card-list__cards l-card-list__cards--$list_layout.id$">
            $if(list_layout.is_grid)$
                $list:partials/grid_card()$
            $elseif(list_layout.is_gallery)$
                $list:partials/gallery_card()$
            $else$
                $list:partials/list_card()$
            $endif$
        </div>
    </div>
</div>