]> git.dujemihanovic.xyz Git - dujemihanovic.xyz.git/commitdiff
Replace all usage of .Permalink with .RelPermalink
authorDuje Mihanović <duje.mihanovic@skole.hr>
Tue, 15 Aug 2023 11:01:24 +0000 (13:01 +0200)
committerDuje Mihanović <duje.mihanovic@skole.hr>
Tue, 15 Aug 2023 11:01:24 +0000 (13:01 +0200)
This should fix stylesheet loading after commit 59c224b ("Attempt to
navigation on old (non-TLS 1.2) browsers").

While at it, that commit should have been named "Attempt to **fix**
navigation..."

layouts/_default/baseof.html
layouts/posts/list.html

index 2248357f9747c11a1f076d210b250bf7fea34573..a32c2f436445f52bd0ca16919a3ffb303fbb1977 100644 (file)
@@ -3,7 +3,7 @@
        <head>
                {{ partial "meta.html" . }}
                {{ $style := resources.Get "css/style.css" | resources.Minify }}
-               <link rel="stylesheet" href="{{ $style.Permalink }}?v=1.0.0">
+               <link rel="stylesheet" href="{{ $style.RelPermalink }}?v=1.0.0">
                <!-- I'm a brainlet and don't know how to properly fetch another page's feed. If you know, please tell me. -->
                <link rel="alternate" type="application/rss+xml" href="{{ $.Site.BaseURL }}posts/index.xml" title="Blog | Duje Mihanović's Site">
        </head>
index bca32c96303c7d2789870b66e3d17e02dbf39957..0da1d863fff975755f193071eef2dc45d86af8e6 100644 (file)
@@ -3,7 +3,7 @@
 <ul>
 {{ range .Pages }}
        <li>
-               <a href="{{ .Permalink }}">{{ .Title }}</a> - {{ .Date.Format "January 2, 2006" }}</a>
+               <a href="{{ .RelPermalink }}">{{ .Title }}</a> - {{ .Date.Format "January 2, 2006" }}</a>
        </li>
 {{ end }}
 </ul>