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

github.com/pravin/hugo-theme-prav.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.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..69aa1d9
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,43 @@
+<head>
+ <meta charset="utf-8">
+ <meta name="theme-color" content="#000" />
+ <title>
+ {{ if .IsHome }}
+ {{ if .Site.Title }}
+ {{ .Site.Title }}
+ {{ else }}
+ {{ .Site.Params.Title }}
+ {{ end }}
+ &middot; {{ .Site.Params.Tagline }}
+ {{ else }}
+ {{ .Title }} &middot; {{ .Site.Title }} {{ .Site.Params.Title }}
+ {{ end }}
+ </title>
+
+ <!-- Stylesheets -->
+ <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css"
+ integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
+ <!--[if lte IE 8]>
+ <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/grids-responsive-old-ie-min.css">
+ <![endif]-->
+ <!--[if gt IE 8]><!-->
+ <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/grids-responsive-min.css">
+ <!--<![endif]-->
+ <link rel="stylesheet" href="/css/style.css">
+ <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Merriweather:300,300italic,700&display=swap" type="text/css">
+ <link href="//fonts.googleapis.com/css?family=Fira+Sans+Condensed:300&display=swap" rel="stylesheet">
+ <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
+
+ <link rel="alternate" type="application/atom+xml" title="Atom Feed" href="/atom.xml" />
+
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="generator" content="{{ hugo.Generator }}">
+
+ <meta name="description" content="{{ .Description }}">
+ {{ if .Params.tags }}
+ <meta name="keywords" content="{{ delimit .Params.tags "," }}">
+ {{ end }}
+ <meta name="author" content="{{ .Site.Params.Author }}">
+
+ {{- partial "custom_header.html" . -}}
+</head>