diff options
author | Volpeon <git@volpeon.ink> | 2021-11-20 19:09:57 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2021-11-20 19:09:57 +0100 |
commit | a231e979a166ef9acaa6252f17b486d14f481550 (patch) | |
tree | c0dfa00b11d84ec0e5700768a019d5da2cf159c0 | |
parent | Improved list structure (diff) | |
download | volpeon.ink-a231e979a166ef9acaa6252f17b486d14f481550.tar.gz volpeon.ink-a231e979a166ef9acaa6252f17b486d14f481550.tar.bz2 volpeon.ink-a231e979a166ef9acaa6252f17b486d14f481550.zip |
Fix list
-rw-r--r-- | templates/layouts/list.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/layouts/list.html b/templates/layouts/list.html index 7eded4a..a7d72db 100644 --- a/templates/layouts/list.html +++ b/templates/layouts/list.html | |||
@@ -6,11 +6,11 @@ $body$ | |||
6 | 6 | ||
7 | <div class="c-card-list"> | 7 | <div class="c-card-list"> |
8 | $if(list_grid)$ | 8 | $if(list_grid)$ |
9 | <div class="c-card-list__category-content c-card-list__category-content--grid"> | 9 | <div class="c-card-list__cards c-card-list__cards--grid"> |
10 | $list:partials/grid_card()$ | 10 | $list:partials/grid_card()$ |
11 | </div> | 11 | </div> |
12 | $else$ | 12 | $else$ |
13 | <div class="c-card-list__category-content"> | 13 | <div class="c-card-list__cards"> |
14 | $list:partials/list_card()$ | 14 | $list:partials/list_card()$ |
15 | </div> | 15 | </div> |
16 | $endif$ | 16 | $endif$ |