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

gitlab.com/maxlefou/hugo.386.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r--layouts/partials/head.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..4144dd5
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,12 @@
+<head>
+ <title>{{ .Site.Title }} | {{ .Title }}</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="format-detection" content="telephone=no" />
+ <meta name="theme-color" content="#000084" />
+ <link rel="canonical" href="{{ .Permalink }}">
+ {{/* Don't ask why it's like this. This original theme is a mess... */}}
+ <link rel="stylesheet" href="{{ "/css/bootstrap.css" | relURL }}">
+ <link rel="stylesheet" href="{{ "/css/bootstrap-responsive.css" | relURL }}">
+ <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}">
+ <!-- <noscript><style>body { visibility: visible }</style></noscript> -->
+</head> \ No newline at end of file