]> git.dujemihanovic.xyz Git - dujemihanovic.xyz.git/blob - layouts/_default/baseof.html
78033ff8fc925c6ce8ba04e938d33c37d04c64c6
[dujemihanovic.xyz.git] / layouts / _default / baseof.html
1 <!doctype html>
2 <html>
3 <head>
4 {{ partial "meta.html" . }}
5 {{ $style := resources.Get "css/style.css" | resources.Minify }}
6 <link rel="stylesheet" href="{{ $style.Permalink }}?v=1.0.0">
7 <!-- I'm a brainlet and don't know how to properly fetch another page's feed. If you know, please tell me. -->
8 <link rel="alternate" type="application/rss+xml" href="{{ $.Site.BaseURL }}posts/index.xml" title="Blog | Duje Mihanović's Site">
9 </head>
10
11 <body>
12 {{ partial "nav.html" }}
13 <main>
14 {{ block "main" . }}
15 {{ end }}
16 </main>
17 <br>
18 <footer>
19 <p>If you appreciate my work and would like to donate, you can donate XMR to this address or use the QR code below.</p>
20 <code>85qXBHh99bJ62p7s8upmoqYsvHrJvZWLTD7riHFo3E2jRvdQRoiNuXKRaDMAQiJ34Kfix3KHouNCW6bbD4zniWB5QxZR9Xx</code>
21 <p></p>
22 {{ $image := resources.Get "img/donate.png" }}
23 {{ with $image }}
24 <img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="QR code for XMR donation">
25 {{ end }}
26 {{ $image := resources.Get "img/rss.svg" }}
27 <p></p>
28 <!-- See comment above. -->
29 <a href="{{ $.Site.BaseURL }}posts/index.xml"><img src="{{ $image.RelPermalink }}" width="32px" height="32px" alt="Link to RSS feed"></a>
30 </footer>
31 </body>
32 </html>