summaryrefslogtreecommitdiffstats
path: root/templates/partials/grid_card.html
blob: 25c227185f266c5ce31dbcb445253afbd8a1a8fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<a href="$it.url.rel$" class="c-card-list__card c-card">
    $if(it.indicator)$
        <div class="c-card__block c-card__block--indicator"></div>
    $endif$
    $if(it.icon)$
        <svg class="c-card__block o-icon" width="1em" height="1em">
            <use href="/symbols.svg#icon-$it.icon$"></use>
        </svg>
    $endif$
    <div class="c-card__block c-card__block--main">
        $if(it.subtitle)$
            <small class="u-db">$it.subtitle$</small>
            <strong class="u-db">$it.title$</strong>
        $elseif(it.date)$
            <time datetime="$it.date.yyyy_mm_dd$">
                <small class="u-dn@sm-hi">
                    $it.date.short$
                </small>
                <small class="u-dn@sm-lo">
                    $it.date.long$
                </small>
            </time>
            <strong class="u-db">$it.title$</strong>
        $else$
            $it.title$
        $endif$
    </div>
    $if(it.post_icon)$
        <svg class="c-card__block o-icon" width="1em" height="1em">
            <use href="/symbols.svg#$it.post_icon$"></use>
        </svg>
    $endif$
</a>