33 lines
1.9 KiB
HTML
33 lines
1.9 KiB
HTML
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
{{ partial "schema" . }}
|
|
|
|
{{ with .Title }} <title>{{ . }} {{if $.IsHome}}- {{ $.Site.Params.slogan | default "" | safeHTML }}{{ end }}</title>
|
|
{{ end }}
|
|
|
|
{{ if .Description }}<meta name="description" content="{{ .Description }}" />
|
|
{{ else }}<meta name="description" content="{{ .Site.Params.description }}" />
|
|
{{ end }}
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="robots" content="all,follow">
|
|
<meta name="googlebot" content="index,follow,snippet,archive">
|
|
<!-- die, google fonts, die
|
|
<link rel="stylesheet" id="ct-tracks-google-fonts-css" href="https://fonts.googleapis.com/css?family=Raleway%3A400%2C700&subset=latin%2Clatin-ext&ver=4.7.2" type="text/css" media="all">
|
|
-->
|
|
<!-- Upgraded to Font Awesome 5.3 no need for local files using all.css so all icons are available -->
|
|
<!-- Do we really need this?
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
|
|
-->
|
|
<!-- Theme stylesheet, if possible do not edit this stylesheet -->
|
|
<link href="{{ "css/style.css" | absURL }}?v={{ now.Unix }}" rel="stylesheet" id="theme-stylesheet" type='text/css' media='all'>
|
|
<!-- Custom stylesheet - for your changes -->
|
|
<link href="{{ "css/custom.css" | absURL }}?v={{ now.Unix }}" rel="stylesheet" type='text/css' media='all'>
|
|
<link rel="shortcut icon" href="{{ "img/favicon.ico" | absURL }}" type="image/x-icon">
|
|
<link rel="icon" href="{{ "img/favicon.ico" | absURL }}" type="image/x-icon">
|
|
{{ if .RSSLink }}
|
|
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title | default "" }}" />
|
|
<link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title | default "" }}" />
|
|
{{ end }}
|
|
{{ template "_internal/google_analytics_async.html" . }}
|