summaryrefslogtreecommitdiffstats
path: root/templates/layouts/list.html
blob: f3e5768ca9b62554d986cf09b2195f4679532c9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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">
    $if(list_grid)$
        <div class="l-card-list__cards l-card-list__cards--grid">
            $list:partials/grid_card()$
        </div>
    $else$
        <div class="l-card-list__cards">
            $list:partials/list_card()$
        </div>
    $endif$
</div>