2019-03-18 16:50:46 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
|
|
|
<head>
|
2019-03-19 15:51:07 +01:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2019-03-18 16:50:46 +01:00
|
|
|
<meta name="author" content="{{ .Site.Params.Author }}" />
|
2019-03-19 15:51:07 +01:00
|
|
|
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}" />{{ end }}
|
|
|
|
|
{{ with .Site.Params.keywords }}<meta name="description" content="{{ . }}" />{{ end }}
|
|
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="{{ .Site.BaseURL }}img/favicon.ico" />
|
2019-03-18 16:50:46 +01:00
|
|
|
<title>
|
|
|
|
|
{{- if .IsHome -}}
|
|
|
|
|
{{- .Site.Title -}}
|
|
|
|
|
{{- else -}}
|
|
|
|
|
{{- if .Params.heading -}} {{- .Params.heading -}} {{- else -}} {{- .Site.Title -}} {{ print " | " }} {{- .Title -}} {{- end -}}
|
|
|
|
|
{{- end -}}
|
|
|
|
|
</title>
|
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/bootstrap-3.3.7.min.css" />
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}css/main.css" />
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}css/fontawesome/css/all.min.css" />
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}css/fonts.css" />
|
|
|
|
|
{{ range .Site.Params.custom_css }}
|
2019-07-08 16:24:02 +02:00
|
|
|
<link rel="stylesheet" href="{{ $.Site.BaseURL}}{{ . }}?v={{ md5 hugo.BuildDate }}" />
|
2019-03-18 16:50:46 +01:00
|
|
|
{{ end }}
|
|
|
|
|
{{ `<!--[if lt IE 9]>
|
|
|
|
|
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
|
|
|
|
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
|
|
|
|
<![endif]-->` | safeHTML }}
|
|
|
|
|
|
|
|
|
|
{{ template "_internal/google_analytics.html" . }}
|
|
|
|
|
</head>
|