summaryrefslogtreecommitdiffstats
path: root/templates/partials/list_card.html
blob: 438659c8c026aa631c6836eb3467a344834ecc1e (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
43
44
$if(it.url)$
    <a href="$it.url.rel$" class="l-card-list__card c-card">
        <div class="c-card__row l-media">
            $if(it.indicator)$
                <div class="c-card__indicator l-media__block"></div>
            $endif$
            $if(it.icon)$
                <svg class="l-media__block o-icon" width="1em" height="1em" aria-hidden="true">
                    <use href="/icons.svg#$it.icon$"></use>
                </svg>
            $endif$
            <div class="l-media__block l-media__block--main">
                $it.title$
            </div> 
            $if(it.subtitle)$
                <div class="l-media__block u-fs0">
                    <small>
                        $it.subtitle$
                    </small>
                </div>
            $elseif(it.category)$
                <div class="l-media__block u-fs0">
                    <small>
                        $it.category$
                    </small>
                </div>
            $elseif(it.date)$
                <time datetime="$it.date.yyyy_mm_dd$" class="l-media__block u-fs0">
                    <small class="u-d-none@sm-hi">
                        $it.date.short$
                    </small>
                    <small class="u-d-none@sm-lo">
                        $it.date.long$
                    </small>
                </time>
            $endif$
            $if(it.post_icon)$
                <svg class="l-media__block o-icon" width="1em" height="1em" aria-hidden="true">
                    <use href="/icons.svg#$it.post_icon$"></use>
                </svg>
            $endif$
        </div>
    </a>
$endif$