Welcome to mirror list, hosted at ThFree Co, Russian Federation.

head.html « partials « layouts - github.com/djuelg/Shapez-Theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acfb6062a22c9fea567ca8b77affe24cbe3c83d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="{{ with .Site.Params.name }}{{ . }}{{ end }}">
<meta name="description" content="{{ with .Site.Params.description }}{{ . }}{{ end }}">
{{ .Hugo.Generator }}
<title>{{ .Site.Title }}</title>
{{ "<!-- Site Icon -->" | safeHTML }}
<link rel="shortcut icon" href="{{ .Site.BaseURL }}{{ .Site.Params.logo }}">
{{ "<!-- Load CSS config -->" | safeHTML }}
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/normalize.css" type="text/css">
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/default.css" type="text/css">
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/mobile.css" type="text/css">
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/code-style.min.css" type="text/css">

<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.3.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
{{ template "_internal/google_analytics_async.html" . }}