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

github.com/siegerts/hugo-theme-basic.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/header.html')
-rw-r--r--layouts/partials/header.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index e69de29..c9adfa0 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html
+ class=""
+ lang="{{ .Site.LanguageCode }}"
+ prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#"
+>
+ <head>
+ <meta charset="utf-8" />
+
+ {{ partial "meta.html" . }}
+
+ <base href="{{ .Site.BaseURL }}" />
+ <title>{{ .Title }}</title>
+ <link rel="canonical" href="{{ .Permalink }}" />
+
+ <link
+ href="{{ .RSSLink }}"
+ rel="alternate"
+ type="application/rss+xml"
+ title="{{ .Title }}"
+ />
+
+ {{ partial "head_includes.html" . }}
+ <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
+ <link rel="apple-touch-icon" href="/apple-touch-icon.png" />
+ </head>
+</html>