summaryrefslogtreecommitdiffstats
path: root/templates/partials/gallery_card.html
blob: 4aa274acd35ae587e7146ac197234e183b53e1df (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
$if(it.url)$
$if(it.thumbnail)$
<a
    href="$it.url.rel$"
    class="l-card-list__card c-card h-entry"
    itemprop="dataFeedElement"
    itemscope
    itemtype="https://schema.org/$it.schema_type$"
    $if(it.rel)$rel="$it.rel$"$endif$
>
    <link itemprop="thumbnailUrl" href="$it.thumbnail.full$" />

    <div class="c-card__row l-media l-media--flush">
        <div class="c-card__thumbnail">
            <img
                class="c-card__thumbnail-img"
                src="$it.thumbnail.rel$"
                alt="Preview thumbnail of &quot;$it.title$&quot;"
                loading="lazy"
            />
        </div>
    </div>
    <div class="c-card__row l-media c-card__row--hidden">
        $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="$assets.icons_svg$#$it.icon$"></use>
            </svg>
        $endif$
        <div class="l-media__block l-media__block--main">
            $if(it.subtitle)$
                <strong class="u-d-block">$it.title$</strong>
                <small class="u-d-block">$it.subtitle$</small>
            $elseif(it.category)$
                <small class="u-d-block">$it.category$</small>
                <strong class="u-d-block">$it.title$</strong>
            $elseif(it.date)$
                <small class="u-d-block">
                    <time datetime="$it.date.yyyy_mm_dd$" itemprop="dateCreated">
                        $it.date.long$
                    </time>
                </small>
                <strong class="u-d-block">$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="$assets.icons_svg$#$it.post_icon$"></use>
            </svg>
        $endif$
    </div>
</a>
$endif$
$endif$