41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; img-src 'self'; script-src 'none'; object-src 'none'; style-src 'self' 'unsafe-inline'; require-trusted-types-for 'script'; base-uri 'none'; frame-ancestors 'self'; form-action 'self';">
|
|
{{- partial "favicon.html" . -}}
|
|
<title>{{- block "title" . }}{{ with .Title }}{{ . }}{{ end }}{{- end }}</title>
|
|
|
|
{{- partial "seo_tags.html" . -}}
|
|
<meta name="referrer" content="no-referrer">
|
|
|
|
{{ with .OutputFormats.Get "rss" -}}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
{{ end -}}
|
|
|
|
{{- partial "style.html" . -}}
|
|
|
|
<!-- A partial to be overwritten by the user.
|
|
Simply place a custom_head.html into
|
|
your local /layouts/partials-directory -->
|
|
{{- partial "custom_head.html" . -}}
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
{{- block "main" . }}{{- end }}
|
|
</main>
|
|
<footer>
|
|
{{- partial "footer.html" . -}}
|
|
</footer>
|
|
|
|
<!-- A partial to be overwritten by the user.
|
|
Simply place a custom_body.html into
|
|
your local /layouts/partials-directory -->
|
|
{{- partial "custom_body.html" . -}}
|
|
</body>
|
|
|
|
</html>
|