blob: 4b24711a2c3d3e3d6df0e96892a44d3d9afa73fc (
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
|
<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)$
<strong class="u-db">$it.title$</strong>
<small class="u-db">$it.subtitle$</small>
$elseif(it.category)$
<small class="u-db">$it.category$</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>
|