summaryrefslogtreecommitdiffstats
path: root/templates/layouts/categorized_list.html
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2021-04-29 17:53:38 +0200
committerVolpeon <git@volpeon.ink>2021-04-29 17:53:38 +0200
commit518c7337572c0b7ba01b595aeb94fd36f8e59fdf (patch)
treea711f51b5459da68aa52fe79d53f21b7e2aafcdd /templates/layouts/categorized_list.html
parentUpdate (diff)
downloadvolpeon.ink-518c7337572c0b7ba01b595aeb94fd36f8e59fdf.tar.gz
volpeon.ink-518c7337572c0b7ba01b595aeb94fd36f8e59fdf.tar.bz2
volpeon.ink-518c7337572c0b7ba01b595aeb94fd36f8e59fdf.zip
Update
Diffstat (limited to 'templates/layouts/categorized_list.html')
-rw-r--r--templates/layouts/categorized_list.html34
1 files changed, 17 insertions, 17 deletions
diff --git a/templates/layouts/categorized_list.html b/templates/layouts/categorized_list.html
index 2a37c9c..f2eda8b 100644
--- a/templates/layouts/categorized_list.html
+++ b/templates/layouts/categorized_list.html
@@ -1,23 +1,23 @@
1<section class="l-section l-section--fullscreen l-section--no-head"> 1<section class="l-section l-section--fullscreen l-section--no-head">
2 <div class="l-container l-container--pad-x l-container--pad-y l-container--content"> 2 <div class="l-container l-container--pad-x l-container--pad-y l-container--content s-body">
3 <div class="s-body"> 3 <h1><span class="s-body__title-inner">$title$</span></h1>
4
4$body$ 5$body$
5 6
6 $for(pages.by_category)$ 7 $for(pages.by_category)$
7 <h2> 8 <h2>
8 $for(it.value/first)$ 9 $for(it.value/first)$
9 $it.category.name$ 10 $it.category.name$
10 $endfor$ 11 $endfor$
11 </h2> 12 </h2>
12 <ul> 13 <ul>
13 $for(it.value)$ 14 $for(it.value)$
14 <li> 15 <li>
15 <a href="$it.url.rel$">$it.title$</a> 16 <a href="$it.url.rel$">$it.title$</a>
16 </li> 17 </li>
17 $endfor$ 18 $endfor$
18 </ul> 19 </ul>
19 $endfor$ 20 $endfor$
20 </div>
21 </div> 21 </div>
22</section> 22</section>
23 23