summaryrefslogtreecommitdiffstats
path: root/templates/partials/list_card.html
blob: 73caa05cb85a2a35ddfcd8ca0c6290bb7c71af93 (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
34
35
36
37
38
39
40
41
42
$if(it.url)$
    <a href="$it.url.rel$" class="l-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">
            $it.title$
        </div>
        $if(it.subtitle)$
            <div class="c-card__block u-fs0">
                <small>
                    $it.subtitle$
                </small>
            </div>
        $elseif(it.category)$
            <div class="c-card__block u-fs0">
                <small>
                    $it.category$
                </small>
            </div>
        $elseif(it.date)$
            <time datetime="$it.date.yyyy_mm_dd$" class="c-card__block u-fs0">
                <small class="u-dn@sm-hi">
                    $it.date.short$
                </small>
                <small class="u-dn@sm-lo">
                    $it.date.long$
                </small>
            </time>
        $endif$
        $if(it.post_icon)$
            <svg class="c-card__block o-icon" width="1em" height="1em">
                <use href="/symbols.svg#icon-$it.post_icon$"></use>
            </svg>
        $endif$
    </a>
$endif$