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..."
<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>
<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>