hugo-theme-hilfe/layouts/partials/head.html

21 lines
854 B
HTML
Raw Normal View History

2020-01-12 15:33:02 +01:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{{ partial "title" . }}">
<title>{{ partial "title" . }} | {{ .Site.Title -}}</title>
<link rel="icon" href="{{ "favicon/favicon-32x32.png" | relURL }}" type="image/x-icon">
2020-06-01 15:59:02 +02:00
<link rel="stylesheet" href="{{ "main.min.css" | relURL }}" media="screen">
2020-01-12 15:33:02 +01:00
<!-- Theme stylesheet, you can customize css by creating static/custom.css` in your website -->
2020-06-01 15:59:02 +02:00
<link rel="stylesheet" href="{{ "custom.css" | relURL }}" media="screen">
2020-01-12 15:33:02 +01:00
<!-- RSS -->
{{ with .OutputFormats.Get "rss" -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
{{ "<!--" | safeHTML }}
Made with Geekdoc theme
https://github.com/xoxys/hugo-geekdoc
{{ "-->" | safeHTML }}