diff options
author | Volpeon <git@volpeon.ink> | 2022-06-12 13:18:46 +0200 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2022-06-12 13:18:46 +0200 |
commit | 68dc5757b3a395ba89dfcc81103a5fbd31f03b2c (patch) | |
tree | 1810595c1811cb50fe9a0f6116bf64f29e289d7d /templates/layouts/list.html | |
parent | Fixed list, updated fonts, fixed source wrapping (diff) | |
download | volpeon.ink-68dc5757b3a395ba89dfcc81103a5fbd31f03b2c.tar.gz volpeon.ink-68dc5757b3a395ba89dfcc81103a5fbd31f03b2c.tar.bz2 volpeon.ink-68dc5757b3a395ba89dfcc81103a5fbd31f03b2c.zip |
Better list layouts, added 'random' link for Fediring
Diffstat (limited to 'templates/layouts/list.html')
-rw-r--r-- | templates/layouts/list.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/layouts/list.html b/templates/layouts/list.html index 88102b9..ebbc2d4 100644 --- a/templates/layouts/list.html +++ b/templates/layouts/list.html | |||
@@ -7,9 +7,13 @@ $body$ | |||
7 | 7 | ||
8 | <div class="l-card-list"> | 8 | <div class="l-card-list"> |
9 | <div class="l-card-list__cards l-card-list__cards--$list_layout.id$"> | 9 | <div class="l-card-list__cards l-card-list__cards--$list_layout.id$"> |
10 | $if(list_layout.is_grid)$ | 10 | $if(list_layout.is_grid-2)$ |
11 | $list:partials/grid_card()$ | 11 | $list:partials/grid_card()$ |
12 | $elseif(list_layout.is_gallery)$ | 12 | $elseif(list_layout.is_grid-3)$ |
13 | $list:partials/grid_card()$ | ||
14 | $elseif(list_layout.is_gallery-2)$ | ||
15 | $list:partials/gallery_card()$ | ||
16 | $elseif(list_layout.is_gallery-3)$ | ||
13 | $list:partials/gallery_card()$ | 17 | $list:partials/gallery_card()$ |
14 | $else$ | 18 | $else$ |
15 | $list:partials/list_card()$ | 19 | $list:partials/list_card()$ |