2020-07-07 08:37:57 +00:00
|
|
|
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
|
|
|
|
|
<title>{{ with .Title }}{{ . }}{{ else }}{{ .Site.Title }}{{ end }}</title>
|
|
|
|
|
2020-09-09 16:00:59 +00:00
|
|
|
{{ with .Site.Params.favicon }}
|
|
|
|
<link rel="shortcut icon" href="{{ . | absURL }}" type="image/png"
|
|
|
|
/>{{ end }}
|
2020-07-07 08:37:57 +00:00
|
|
|
|
2020-09-09 16:00:59 +00:00
|
|
|
{{ with .Site.Params.description }}
|
|
|
|
<meta name="description" content="{{ . }}"
|
|
|
|
/>{{ end }}
|
|
|
|
{{ with .Site.Params.meta.keywords }}
|
|
|
|
<meta name="keywords" content="{{ . }}"
|
|
|
|
/>{{ end }}
|
2020-07-07 08:37:57 +00:00
|
|
|
<meta name="referrer" content="no-referrer-when-downgrade" />
|
|
|
|
|
|
|
|
<meta name="HandheldFriendly" content="True" />
|
|
|
|
<meta name="MobileOptimized" content="320" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
2020-09-09 16:00:59 +00:00
|
|
|
<link rel="stylesheet" href="{{ "css/screen.css" | absURL }}" />
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300italic,700"
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css?family=Oswald:400,300,700|Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800|Roboto+Slab:400,100,300,700"
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="{{ "font-awesome/css/font-awesome.min.css" | absURL }}"
|
|
|
|
/>
|
2020-07-07 08:37:57 +00:00
|
|
|
|
|
|
|
{{ template "_internal/opengraph.html" . }}
|
|
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
|
|
{{ template "_internal/schema.html" . }}
|
2020-07-08 18:26:33 +00:00
|
|
|
|
|
|
|
<!-- A partial to be overwritten by the user.
|
|
|
|
Simply place a custom_head.html into
|
|
|
|
your local /layouts/partials-directory -->
|
|
|
|
{{- partial "custom_head.html" . -}}
|