summaryrefslogtreecommitdiffstats
path: root/templates/layouts/categorized_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/layouts/categorized_list.html')
-rw-r--r--templates/layouts/categorized_list.html34
1 files changed, 18 insertions, 16 deletions
diff --git a/templates/layouts/categorized_list.html b/templates/layouts/categorized_list.html
index b32d2d5..8c25ec0 100644
--- a/templates/layouts/categorized_list.html
+++ b/templates/layouts/categorized_list.html
@@ -1,21 +1,23 @@
1<main class="c-page s-page l-container l-container--content l-container--pad-v"> 1<main>
2 <div class="c-page__content s-page-content"> 2 <div class="c-page s-page l-container l-container--content l-container--pad-x l-container--pad-y">
3 <div class="c-page__content s-page-content">
3$body$ 4$body$
4 5
5 $for(pages.by_category)$ 6 $for(pages.by_category)$
6 <h2 class="c-page__prefixed c-page__prefixed--h2"> 7 <h2 class="c-page__prefixed c-page__prefixed--h2">
7 $for(it.value/first)$ 8 $for(it.value/first)$
8 $it.category.name$ 9 $it.category.name$
9 $endfor$ 10 $endfor$
10 </h2> 11 </h2>
11 <ul> 12 <ul>
12 $for(it.value)$ 13 $for(it.value)$
13 <li class="c-page__prefixed c-page__prefixed--ref"> 14 <li class="c-page__prefixed c-page__prefixed--ref">
14 <a href="$it.url.rel$">$it.title$</a> 15 <a href="$it.url.rel$">$it.title$</a>
15 </li> 16 </li>
16 $endfor$ 17 $endfor$
17 </ul> 18 </ul>
18 $endfor$ 19 $endfor$
20 </div>
19 </div> 21 </div>
20</main> 22</main>
21 23