summaryrefslogtreecommitdiffstats
path: root/templates/layouts/dated_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/layouts/dated_list.html')
-rw-r--r--templates/layouts/dated_list.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/templates/layouts/dated_list.html b/templates/layouts/dated_list.html
deleted file mode 100644
index 8c5de69..0000000
--- a/templates/layouts/dated_list.html
+++ /dev/null
@@ -1,25 +0,0 @@
1<main class="c-page s-page l-container l-container--content l-container--pad-v">
2 <div class="c-page__content">
3 <h1 class="c-page__prefixed c-page__prefixed--h1">$title$</h1>
4$body$
5
6 $if(categories)$
7 <ul class="c-hlist">
8 $for(categories)$
9 <li class="c-hlist__item"><strong>$it.key/uppercase$</strong> $it.value.name$</li>
10 $endfor$
11 </ul>
12 $endif$
13
14 $for(pages.by_year)$
15 <ul>
16 $for(it.value)$
17 <li class="c-page__prefixed c-page__prefixed--ref">
18 <a href="$it.url.rel$">$it.category.id/uppercase$ $it.date.yyyy_mm_dd$ - $it.title$</a>
19 </li>
20 $endfor$
21 </ul>
22 $endfor$
23 </div>
24</main>
25