diff options
| author | Volpeon <git@volpeon.ink> | 2021-05-24 20:39:48 +0200 |
|---|---|---|
| committer | Volpeon <git@volpeon.ink> | 2021-05-24 20:39:48 +0200 |
| commit | a26deffdc9071a5558996948fcecb71d582870d0 (patch) | |
| tree | 7098b3edab52b0084f16d8a367f90a04fcb70948 /templates/layouts/categorized_list.html | |
| parent | Improved link + accent colors (diff) | |
| download | volpeon.ink-a26deffdc9071a5558996948fcecb71d582870d0.tar.gz volpeon.ink-a26deffdc9071a5558996948fcecb71d582870d0.tar.bz2 volpeon.ink-a26deffdc9071a5558996948fcecb71d582870d0.zip | |
Better file structure, remove categories as special concept
Diffstat (limited to 'templates/layouts/categorized_list.html')
| -rw-r--r-- | templates/layouts/categorized_list.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/layouts/categorized_list.html b/templates/layouts/categorized_list.html index 898c011..153ef99 100644 --- a/templates/layouts/categorized_list.html +++ b/templates/layouts/categorized_list.html | |||
| @@ -7,12 +7,12 @@ $body$ | |||
| 7 | </div> | 7 | </div> |
| 8 | 8 | ||
| 9 | <div class="c-post-list"> | 9 | <div class="c-post-list"> |
| 10 | $for(pages.by_category)$ | 10 | $for(pages.all)$ |
| 11 | <h2 class="c-post-list__category-header"> | 11 | <h2 class="c-post-list__category-header"> |
| 12 | $it.name$ | 12 | $it.title$ |
| 13 | </h2> | 13 | </h2> |
| 14 | <div class="c-post-list__category-content"> | 14 | <div class="c-post-list__category-content"> |
| 15 | $for(it.pages)$ | 15 | $for(it.pages.all)$ |
| 16 | <a href="$it.url.rel$" class="c-post-list__post c-card"> | 16 | <a href="$it.url.rel$" class="c-post-list__post c-card"> |
| 17 | <div class="c-card__content"> | 17 | <div class="c-card__content"> |
| 18 | $it.title$ | 18 | $it.title$ |
