npqhugo/layouts/partials/head.html
2020-04-16 20:21:05 +02:00

17 lines
No EOL
673 B
HTML

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{{with .Site.Params.description -}}
<meta name="description" content="{{.}}">
{{ end }}
{{- with .Site.Params.author -}}
<meta name="Author" content="{{.}}">
{{ end }}
{{- with .Site.Params.keywords -}}
<meta name="keywords" content="{{.}}">
{{ end -}}
<link rel="stylesheet" href={{ "css/syntax.css" | absURL }}>
<link rel="stylesheet" href={{ "css/style.css" | absURL }}>
<script src="https://kit.fontawesome.com/1b7478c139.js" crossorigin="anonymous"></script>
<title>{{ .Site.Title }}</title>
</head>