25 lines
1013 B
HTML
25 lines
1013 B
HTML
{{ if .Params.extraHeadContent }}
|
|
{{ range .Params.extraHeadContent }}
|
|
{{ . | safeHTML }}
|
|
|
|
{{ end }}
|
|
{{ end }}
|
|
<!-- https://blog.joinmastodon.org/2024/07/highlighting-journalism-on-mastodon/ -->
|
|
<meta name="fediverse:creator" content="@scubbo@fosstodon.org" />
|
|
<!-- This is a prerequisite for the fediverse crediting behaviour on the line above - see https://ogp.me/ -->
|
|
<meta property="og:image" content="/img/me.png" />
|
|
<!-- https://stackoverflow.com/a/70385342/1040915 -->
|
|
<script src="/js/custom.js" defer></script>
|
|
<link rel="stylesheet" href="/css/custom.css">
|
|
<!-- https://mertbakir.gitlab.io/hugo/math-typesetting-in-hugo/ -->
|
|
{{ if .Params.math }}{{ partial "helpers/katex.html" . }}{{ end }}
|
|
<script defer data-domain="blog.scubbo.org" src="https://tracking.scubbo.org/js/plausible.js"></script>
|
|
|
|
<!--
|
|
https://gohugo.io/templates/rss/
|
|
-->
|
|
{{ with .OutputFormats.Get "rss" -}}
|
|
{{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }}
|
|
{{ end }}
|
|
|