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.html15
1 files changed, 11 insertions, 4 deletions
diff --git a/templates/layouts/categorized_list.html b/templates/layouts/categorized_list.html
index f2eda8b..75c636a 100644
--- a/templates/layouts/categorized_list.html
+++ b/templates/layouts/categorized_list.html
@@ -6,14 +6,21 @@ $body$
6 6
7 $for(pages.by_category)$ 7 $for(pages.by_category)$
8 <h2> 8 <h2>
9 $for(it.value/first)$ 9 <span class="s-body__title-inner">
10 $it.category.name$ 10 $for(it.value/first/first)$
11 $endfor$ 11 $it.category.name$
12 $endfor$
13 </span>
12 </h2> 14 </h2>
13 <ul> 15 <ul>
14 $for(it.value)$ 16 $for(it.value)$
15 <li> 17 <li>
16 <a href="$it.url.rel$">$it.title$</a> 18 <a href="$it.url.rel$">
19 $if(it.category.show_date)$
20 $it.date.yyyy_mm_dd$:
21 $endif$
22 $it.title$
23 </a>
17 </li> 24 </li>
18 $endfor$ 25 $endfor$
19 </ul> 26 </ul>