24 lines
1 KiB
HTML
24 lines
1 KiB
HTML
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
{{- if eq .Title "" }}
|
|
<title>{{ .Site.Title }}</title>
|
|
{{- else }}
|
|
<title>{{ .Title }} - {{ .Site.Title }}</title>
|
|
{{- end }}
|
|
{{- if ne .Description "" }}
|
|
<meta name="description" content="{{ .Description }}">
|
|
{{- else if isset .Site.Params "description" }}
|
|
<meta name="description" content="{{ .Site.Params.description }}">
|
|
{{- end }}
|
|
{{ hugo.Generator }}
|
|
<link href="{{ .Site.BaseURL }}/index.xml" rel="alternate" type="application/rss+xml">
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
<link rel="stylesheet" href="{{"css/theme.min.css" | absURL}}">
|
|
<link rel="shortcut icon" href="{{ "favicon.png" | absURL }}">
|
|
{{ partial "meta/chroma.html" . -}}
|
|
<script src="{{ "js/bundle.js" | absURL }}"></script>
|
|
{{- partial "meta/tag-manager.html" . -}}
|
|
{{- partial "custom-css.html" . -}}
|
|
{{- template "_internal/opengraph.html" . -}}
|
|
{{- template "_internal/schema.html" . -}}
|