diff options
author | Volpeon <git@volpeon.ink> | 2021-04-27 21:40:34 +0200 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2021-04-27 21:40:34 +0200 |
commit | 93493c0714145dc8bb7d812700a0f4f3f577dd7f (patch) | |
tree | c012755c3ced01820d7fa0872c27feed5288aa7f /templates/layouts/categorized_list.html | |
parent | Update (diff) | |
download | volpeon.ink-93493c0714145dc8bb7d812700a0f4f3f577dd7f.tar.gz volpeon.ink-93493c0714145dc8bb7d812700a0f4f3f577dd7f.tar.bz2 volpeon.ink-93493c0714145dc8bb7d812700a0f4f3f577dd7f.zip |
Update
Diffstat (limited to 'templates/layouts/categorized_list.html')
-rw-r--r-- | templates/layouts/categorized_list.html | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/templates/layouts/categorized_list.html b/templates/layouts/categorized_list.html index 916be94..2a37c9c 100644 --- a/templates/layouts/categorized_list.html +++ b/templates/layouts/categorized_list.html | |||
@@ -2,22 +2,22 @@ | |||
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"> |
3 | <div class="s-body"> | 3 | <div class="s-body"> |
4 | $body$ | 4 | $body$ |
5 | </div> | ||
6 | 5 | ||
7 | $for(pages.by_category)$ | 6 | $for(pages.by_category)$ |
8 | <h2> | 7 | <h2> |
9 | $for(it.value/first)$ | 8 | $for(it.value/first)$ |
10 | $it.category.name$ | 9 | $it.category.name$ |
11 | $endfor$ | 10 | $endfor$ |
12 | </h2> | 11 | </h2> |
13 | <ul> | 12 | <ul> |
14 | $for(it.value)$ | 13 | $for(it.value)$ |
15 | <li> | 14 | <li> |
16 | <a href="$it.url.rel$">$it.title$</a> | 15 | <a href="$it.url.rel$">$it.title$</a> |
17 | </li> | 16 | </li> |
18 | $endfor$ | 17 | $endfor$ |
19 | </ul> | 18 | </ul> |
20 | $endfor$ | 19 | $endfor$ |
20 | </div> | ||
21 | </div> | 21 | </div> |
22 | </section> | 22 | </section> |
23 | 23 | ||