summaryrefslogtreecommitdiffstats
path: root/templates/partials
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2022-06-11 16:26:47 +0200
committerVolpeon <git@volpeon.ink>2022-06-11 16:26:47 +0200
commit604dcfe244ab8f6913db9dec3de5796ad32f43f5 (patch)
treefc56d5965f3e263937efd3d42196afe1359299cb /templates/partials
parentRe-implemented design via iro-design (diff)
downloadvolpeon.ink-604dcfe244ab8f6913db9dec3de5796ad32f43f5.tar.gz
volpeon.ink-604dcfe244ab8f6913db9dec3de5796ad32f43f5.tar.bz2
volpeon.ink-604dcfe244ab8f6913db9dec3de5796ad32f43f5.zip
Removed private section, various improvements
Diffstat (limited to 'templates/partials')
-rw-r--r--templates/partials/ascii_fox.html2
-rw-r--r--templates/partials/ascii_fox_small.html2
-rw-r--r--templates/partials/gallery_card.html2
-rw-r--r--templates/partials/small_gallery_card.html39
4 files changed, 42 insertions, 3 deletions
diff --git a/templates/partials/ascii_fox.html b/templates/partials/ascii_fox.html
index f5e5316..bdce36b 100644
--- a/templates/partials/ascii_fox.html
+++ b/templates/partials/ascii_fox.html
@@ -3,7 +3,7 @@
3 ' ' ' ' ' ' ' ' ' ' ' ' ' 3 ' ' ' ' ' ' ' ' ' ' ' ' '
4 ' . | | | ' ' ' ' ' | | ' ' | ' 4 ' . | | | ' ' ' ' ' | | ' ' | '
5 ' | | | ' | ' ' ' ' ' | : | ' ' | . ' 5 ' | | | ' | ' ' ' ' ' | : | ' ' | . '
6 ' ' | | . | ' 9thPK7O3xn ' ' ' | | ' ' | ' 6 ' ' | | . | ' ' ' ' ' | | ' ' | '
7 ' | __~| | | ' ' ' ' ' | | | ' ' | | ' 7 ' | __~| | | ' ' ' ' ' | | | ' ' | | '
8 ' ' |__ ,( |' |_ ' ' ' <strong>//\_</strong> ' | ' . | ' ' | ' ' 8 ' ' |__ ,( |' |_ ' ' ' <strong>//\_</strong> ' | ' . | ' ' | ' '
9 ' | )~._ _( . ) .| ) ' <strong>____,...,______..,_~`` -`..,</strong> ' | ' | . ( ' ' | ' 9 ' | )~._ _( . ) .| ) ' <strong>____,...,______..,_~`` -`..,</strong> ' | ' | . ( ' ' | '
diff --git a/templates/partials/ascii_fox_small.html b/templates/partials/ascii_fox_small.html
index ea05aa2..97ce600 100644
--- a/templates/partials/ascii_fox_small.html
+++ b/templates/partials/ascii_fox_small.html
@@ -2,7 +2,7 @@
2 ' ' ' ' 2 ' ' ' '
3 | | ' ' ' | | ' ' 3 | | ' ' ' | | ' '
4 | ' | ' ' ' | ' | ' ' 4 | ' | ' ' ' | ' | ' '
5 | | 9thPK7O3xn ' | . | ' ' 5 | | ' ' ' | . | ' '
6 | . | ' ' <strong>//\__</strong> ' | | ' ' 6 | . | ' ' <strong>//\__</strong> ' | | ' '
7 | | <strong>_.~-"""-----~`` ,-´</strong> ' |' | ' ' 7 | | <strong>_.~-"""-----~`` ,-´</strong> ' |' | ' '
8 | | '| <strong>.´ ,~'\ ).,__,)/,,"</strong> ' | | | ' ' 8 | | '| <strong>.´ ,~'\ ).,__,)/,,"</strong> ' | | | ' '
diff --git a/templates/partials/gallery_card.html b/templates/partials/gallery_card.html
index 386843f..8e6f95a 100644
--- a/templates/partials/gallery_card.html
+++ b/templates/partials/gallery_card.html
@@ -1,6 +1,6 @@
1$if(it.url)$ 1$if(it.url)$
2$if(it.thumbnail)$ 2$if(it.thumbnail)$
3 <a href="$it.url.rel$" class="l-card-list__card c-card"> 3 <a href="$it.url.rel$" class="l-card-list__card c-card" title="$it.title/nowrap$">
4 <div class="c-card__row l-media l-media--flush"> 4 <div class="c-card__row l-media l-media--flush">
5 <div class="c-card__thumbnail"> 5 <div class="c-card__thumbnail">
6 <img 6 <img
diff --git a/templates/partials/small_gallery_card.html b/templates/partials/small_gallery_card.html
new file mode 100644
index 0000000..35d87e4
--- /dev/null
+++ b/templates/partials/small_gallery_card.html
@@ -0,0 +1,39 @@
1$if(it.url)$
2$if(it.thumbnail)$
3 <a href="$it.url.rel$" class="l-card-list__card c-card" title="$it.title/nowrap$">
4 <div class="c-card__row l-media l-media--flush">
5 <div class="c-card__thumbnail">
6 <img
7 class="c-card__thumbnail-img"
8 src="$it.thumbnail.rel$"
9 alt="Preview thumbnail of &quot;$it.title$&quot;"
10 loading="lazy"
11 />
12 </div>
13 </div>
14 <div class="c-card__row l-media c-card__row--hidden">
15 <div class="l-media__block l-media__block--main">
16 $if(it.subtitle)$
17 <strong class="u-d-block u-elp">$it.title$</strong>
18 <small class="u-d-block u-elp">$it.subtitle$</small>
19 $elseif(it.category)$
20 <small class="u-d-block u-elp">$it.category$</small>
21 <strong class="u-d-block u-elp">$it.title$</strong>
22 $elseif(it.date)$
23 <time datetime="$it.date.yyyy_mm_dd$">
24 <small class="u-d-none@sm-hi">
25 $it.date.short$
26 </small>
27 <small class="u-d-none@sm-lo">
28 $it.date.long$
29 </small>
30 </time>
31 <strong class="u-d-block u-elp">$it.title$</strong>
32 $else$
33 $it.title$
34 $endif$
35 </div>
36 </div>
37 </a>
38$endif$
39$endif$