summaryrefslogtreecommitdiffstats
path: root/templates/layouts/list.html
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2021-11-21 08:08:14 +0100
committerVolpeon <git@volpeon.ink>2021-11-21 08:08:14 +0100
commit5ede915c4990584fa0ae7747b9a5ad9a4e93acdd (patch)
tree175f4f34b47a1a122ed69a1581f7b19b65d29428 /templates/layouts/list.html
parentFix list card post icon (diff)
downloadvolpeon.ink-5ede915c4990584fa0ae7747b9a5ad9a4e93acdd.tar.gz
volpeon.ink-5ede915c4990584fa0ae7747b9a5ad9a4e93acdd.tar.bz2
volpeon.ink-5ede915c4990584fa0ae7747b9a5ad9a4e93acdd.zip
Improved list structure again
Diffstat (limited to 'templates/layouts/list.html')
-rw-r--r--templates/layouts/list.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/layouts/list.html b/templates/layouts/list.html
index a7d72db..f3e5768 100644
--- a/templates/layouts/list.html
+++ b/templates/layouts/list.html
@@ -4,13 +4,13 @@
4$body$ 4$body$
5</header> 5</header>
6 6
7<div class="c-card-list"> 7<div class="l-card-list">
8 $if(list_grid)$ 8 $if(list_grid)$
9 <div class="c-card-list__cards c-card-list__cards--grid"> 9 <div class="l-card-list__cards l-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__cards"> 13 <div class="l-card-list__cards">
14 $list:partials/list_card()$ 14 $list:partials/list_card()$
15 </div> 15 </div>
16 $endif$ 16 $endif$