summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2021-05-06 21:53:04 +0200
committerVolpeon <git@volpeon.ink>2021-05-06 21:53:04 +0200
commite99681e1abb802e486a7042434ec2697585a9d0e (patch)
tree66a286c6b95b27d76c0170b0ad261b5016cdc553 /templates
parentUpdate (diff)
downloadvolpeon.ink-e99681e1abb802e486a7042434ec2697585a9d0e.tar.gz
volpeon.ink-e99681e1abb802e486a7042434ec2697585a9d0e.tar.bz2
volpeon.ink-e99681e1abb802e486a7042434ec2697585a9d0e.zip
Update
Diffstat (limited to 'templates')
-rw-r--r--templates/layouts/categorized_list.html14
-rw-r--r--templates/layouts/index.html2
-rw-r--r--templates/layouts/page.html16
3 files changed, 17 insertions, 15 deletions
diff --git a/templates/layouts/categorized_list.html b/templates/layouts/categorized_list.html
index 8cc5c24..5e2d4a5 100644
--- a/templates/layouts/categorized_list.html
+++ b/templates/layouts/categorized_list.html
@@ -1,11 +1,13 @@
1<section class="l-section l-section--fullscreen l-section--no-head"> 1<section class="l-section l-section--fullscreen l-section--no-head">
2 <div class="l-container l-container--pad-x l-container--pad-y l-container--content s-body"> 2 <div class="l-container l-container--pad-x l-container--pad-y l-container--content s-colored-links">
3 <h1><span class="s-body__title-inner">$title$</span></h1> 3 <div class="s-headlines s-body">
4 <h1 class="u-mt0"><span class="s-headlines__title-inner">$title$</span></h1>
4 5
5$body$ 6$body$
7 </div>
6 8
7 $for(pages.by_category)$ 9 $for(pages.by_category)$
8 <h2> 10 <h2 class="s-body__h3">
9 $for(it.value/first/first)$ 11 $for(it.value/first/first)$
10 $it.category.name$ 12 $it.category.name$
11 $endfor$ 13 $endfor$
@@ -13,10 +15,10 @@ $body$
13 <ul> 15 <ul>
14 $for(it.value)$ 16 $for(it.value)$
15 <li> 17 <li>
18 $if(it.category.show_date)$
19 $it.date.yyyy_mm_dd$:
20 $endif$
16 <a href="$it.url.rel$"> 21 <a href="$it.url.rel$">
17 $if(it.category.show_date)$
18 $it.date.yyyy_mm_dd$:
19 $endif$
20 $it.title$ 22 $it.title$
21 </a> 23 </a>
22 </li> 24 </li>
diff --git a/templates/layouts/index.html b/templates/layouts/index.html
index 18b1c69..6d4c776 100644
--- a/templates/layouts/index.html
+++ b/templates/layouts/index.html
@@ -6,7 +6,7 @@
6 I'm a <strong class="c-landing-banner__emph">red fox</strong> in disguise. 6 I'm a <strong class="c-landing-banner__emph">red fox</strong> in disguise.
7 </span> 7 </span>
8 </h1> 8 </h1>
9 <p class="c-landing-banner__text"> 9 <p class="c-landing-banner__text s-body">
10 Hi, I'm Volpeon. I enjoy programming, creating vector art and designing user interfaces. 10 Hi, I'm Volpeon. I enjoy programming, creating vector art and designing user interfaces.
11 </p> 11 </p>
12 </div> 12 </div>
diff --git a/templates/layouts/page.html b/templates/layouts/page.html
index e45f6eb..2093f8c 100644
--- a/templates/layouts/page.html
+++ b/templates/layouts/page.html
@@ -1,13 +1,13 @@
1<section class="l-section l-section--fullscreen l-section--no-head"> 1<section class="l-section l-section--fullscreen l-section--no-head">
2 <div class="l-container l-container--pad-x l-container--pad-y l-container--content s-body"> 2 <div class="l-container l-container--pad-x l-container--pad-y l-container--content s-colored-links s-headlines s-body">
3 $if(category.show_date)$ 3 <h1 class="u-mt0"><span class="s-headlines__title-inner">$title$</span></h1>
4 <div class="s-body__meta">
5 $date.long$
6 </div>
7 $endif$
8 4
9 <h1><span class="s-body__title-inner">$title$</span></h1> 5 <div class="s-body__meta">
6 $if(category.show_date)$
7 $date.long$
8 $endif$
9 </div>
10 10
11 $body$ 11$body$
12 </div> 12 </div>
13</section> 13</section>