summaryrefslogtreecommitdiffstats
path: root/templates/partials/grid_card.html
blob: afbea1f605bd902e1ee8307e8f6d4cbac3603900 (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 h-entry" itemprop="dataFeedElement" itemscope itemtype="https://schema.org/$it.schema_type$">
        <link class="u-url" itemprop="url" href="$it.url.full$" />

        <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">
                $if(it.subtitle)$
                    <strong class="u-d-block u-elp p-name" itemprop="name headline">$it.title$</strong>
                    <small class="u-d-block u-elp">$it.subtitle$</small>
                $elseif(it.category)$
                    <small class="u-d-block u-elp">$it.category$</small>
                    <strong class="u-d-block u-elp p-name" itemprop="name headline">$it.title$</strong>
                $elseif(it.date)$
                    <time datetime="$it.date.yyyy_mm_dd$" itemprop="dateCreated">
                        <small class="u-d-none@sm-hi">
                            $it.date.short$
                        </small>
                        <small class="u-d-none@sm-lo">
                            $it.date.long$
                        </small>
                    </time>
                    <strong class="u-d-block u-elp p-name" itemprop="name headline">$it.title$</strong>
                $else$
                    <span class="p-name" itemprop="name headline">
                        $it.title$
                    </span>
                $endif$
            </div>
            $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$