hugo-geekblog/layouts/partials/head/others.html

9 lines
425 B
HTML
Raw Normal View History

2020-07-22 23:41:46 +02:00
<link rel="stylesheet" href="{{ "main.min.css" | relURL }}" media="screen">
<link rel="stylesheet" href="{{ "custom.css" | relURL }}" media="screen">
{{ with .OutputFormats.Get "atom" }}
2020-07-23 13:27:52 +02:00
{{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
2020-07-22 23:41:46 +02:00
{{ end }}
2020-07-25 13:53:27 +02:00
{{ printf "<!-- %s -->" "Made with Geekblog theme https://github.com/xoxys/hugo-geekblog" | safeHTML }}