summaryrefslogtreecommitdiffstats
path: root/templates/layouts/categorized_list.html
blob: 6e7219435974afa40607eb49b89c4d35e6fbc386 (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
<section class="l-section l-section--no-head">
    <div class="l-container l-container--pad-x l-container--pad-y l-container--content">
        <div class="s-headlines s-colored-links">
            <h1 class="u-mt0"><span class="s-headlines__title-inner">$title$</span></h1>

$body$
        </div>

        <div class="c-post-list">
            $for(pages.all)$
                $if(it.pages)$
                    <h2 class="c-post-list__category-header">
                        $it.title$
                    </h2>
                    <div class="c-post-list__category-content">
                        $for(it.pages.all)$
                            <a href="$it.url.rel$" class="c-post-list__post c-card">
                                <div class="c-card__content">
                                    $it.title$
                                </div>
                                $if(pages.all.show_dates)$
                                    <time datetime="$it.date.yyyy_mm_dd$" class="c-card__content u-fs0">
                                        <small class="u-dn@sm-hi">
                                            $it.date.short$
                                        </small>
                                        <small class="u-dn@sm-lo">
                                            $it.date.long$
                                        </small>
                                    </time>
                                $endif$
                            </a>
                        $endfor$
                    </div>
                $endif$
            $endfor$
        </div>
    </div>
</section>