summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2023-01-10 09:04:11 +0100
committerVolpeon <git@volpeon.ink>2023-01-10 09:04:11 +0100
commitd8bda573008ab1f23e30cb4f1533468090e5dddb (patch)
tree4d7e7f7c115e0bbe0c92787fd40d180d81f30fab /templates
parentUpdate (diff)
downloadvolpeon.ink-d8bda573008ab1f23e30cb4f1533468090e5dddb.tar.gz
volpeon.ink-d8bda573008ab1f23e30cb4f1533468090e5dddb.tar.bz2
volpeon.ink-d8bda573008ab1f23e30cb4f1533468090e5dddb.zip
Better asset handling; paragraph fix for new Pandoc versions; updated emojis
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/base.html b/templates/base.html
index 8a8f830..0b5db92 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -10,7 +10,7 @@
10 $endif$ 10 $endif$
11 11
12 <link rel="canonical" href="$url.full$"> 12 <link rel="canonical" href="$url.full$">
13 <link rel="shortcut icon" href="/favicon.ico" /> 13 <link rel="shortcut icon" href="/assets/favicon.ico" />
14 14
15 $for(author)$ 15 $for(author)$
16 <meta name="author" content="$it.name$$if(it.email)$ <$it.email$>$endif$" /> 16 <meta name="author" content="$it.name$$if(it.email)$ <$it.email$>$endif$" />
@@ -42,12 +42,12 @@
42 <title>$if(namespace.root.is_index)$$else$$title$ – $endif$$site.title$</title> 42 <title>$if(namespace.root.is_index)$$else$$title$ – $endif$$site.title$</title>
43 43
44 <link rel="preload" href="$assets.style_css$" as="style" /> 44 <link rel="preload" href="$assets.style_css$" as="style" />
45 <link rel="preload" href="/IBMPlexSans-Regular.woff2" as="font" type="font/woff2" crossorigin="anonymous" /> 45 <link rel="preload" href="/assets/IBMPlexSans-Regular.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
46 <link rel="preload" href="/IBMPlexSans-Bold.woff2" as="font" type="font/woff2" crossorigin="anonymous" /> 46 <link rel="preload" href="/assets/IBMPlexSans-Bold.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
47 <link rel="preload" href="/IBMPlexSans-Italic.woff2" as="font" type="font/woff2" crossorigin="anonymous" /> 47 <link rel="preload" href="/assets/IBMPlexSans-Italic.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
48 <link rel="preload" href="/GaretVariable.woff2" as="font" type="font/woff2" crossorigin="anonymous" /> 48 <link rel="preload" href="/assets/GaretVariable.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
49 <link rel="preload" href="/iosevka-term-ss09-regular.woff2" as="font" type="font/woff2" crossorigin="anonymous" /> 49 <link rel="preload" href="/assets/iosevka-term-ss09-regular.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
50 <link rel="preload" href="/iosevka-term-ss09-bold.woff2" as="font" type="font/woff2" crossorigin="anonymous" /> 50 <link rel="preload" href="/assets/iosevka-term-ss09-bold.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
51 51
52 <link rel="stylesheet" href="$assets.style_css$" /> 52 <link rel="stylesheet" href="$assets.style_css$" />
53</head> 53</head>
@@ -56,7 +56,7 @@
56 <nav class="c-header" label="Mainmenu"> 56 <nav class="c-header" label="Mainmenu">
57 <a class="c-header__item c-header__item--icon" href="/" title="$site.title$" itemprop="isPartOf" itemscope itemtype="https://schema.org/WebSite" itemid="$site.url$"> 57 <a class="c-header__item c-header__item--icon" href="/" title="$site.title$" itemprop="isPartOf" itemscope itemtype="https://schema.org/WebSite" itemid="$site.url$">
58 <svg class="c-header__icon" width="1em" height="1em" aria-label="Logo"> 58 <svg class="c-header__icon" width="1em" height="1em" aria-label="Logo">
59 <use href="/symbols.svg#logo"></use> 59 <use href="$assets.symbols_svg$#logo"></use>
60 </svg> 60 </svg>
61 </a> 61 </a>
62 $for(menus.main.items)$ 62 $for(menus.main.items)$