]> git.dujemihanovic.xyz Git - dujemihanovic.xyz.git/blob - layouts/_default/baseof.html
110646b631400d728fcbe606e01c72b343872e52
[dujemihanovic.xyz.git] / layouts / _default / baseof.html
1 <!doctype html>
2 <html lang="en">
3 <head>
4 {{ partial "meta.html" . }}
5 {{ $style := resources.Get "css/style.css" | resources.Minify }}
6 <link rel="stylesheet" href="{{ $style.RelPermalink }}?v=1.1.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 <center>
20 <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>
21 <code>85qXBHh99bJ62p7s8upmoqYsvHrJvZWLTD7riHFo3E2jRvdQRoiNuXKRaDMAQiJ34Kfix3KHouNCW6bbD4zniWB5QxZR9Xx</code>
22 <p></p>
23 {{ $image := resources.Get "img/donate.png" }}
24 {{ with $image }}
25 <img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="QR code for XMR donation">
26 {{ end }}
27 {{ $image := resources.Get "img/rss.svg" }}
28 <p></p>
29 <!-- See comment above. -->
30 <a href="{{ $.Site.BaseURL }}posts/index.xml"><img src="{{ $image.RelPermalink }}" width="32" height="32" alt="Link to RSS feed"></a>
31 <p>This site is <a href="https://git.dujemihanovic.xyz/duje/dujemihanovic.xyz">free software</a></p>
32 </center>
33 </footer>
34 </body>
35 </html>