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

github.com/garvincasimir/hugo-h5bp-simple.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.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..1f04f30
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,30 @@
+<!doctype html>
+<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
+<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
+<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
+<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <title>{{if .Title }}{{ .Title}}{{else}}{{ .Site.Title }}{{end}}</title>
+ <meta name="description" content="{{if .Description }}{{.Description}}{{else}}{{.Site.Params.description}}{{end}}">
+ <meta name="keywords" content="{{if .Keywords }}{{ range .Keywords }}{{ . }}, {{ end }}{{else}}{{.Site.Params.keywords}}{{end}}">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="robots" content="INDEX, FOLLOW">
+ <link rel="stylesheet" href="{{.Site.BaseURL}}/css/normalize.min.css">
+ <link rel="stylesheet" href="{{.Site.BaseURL}}/css/main.css">
+
+ <script src="{{.Site.BaseURL}}/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
+ </head>
+ <body>
+ <!--[if lt IE 8]>
+ <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
+ <![endif]-->
+ <div class="header-container">
+ <header class="wrapper clearfix">
+ <a href="{{.Site.BaseURL}}"> <h1 class="title">{{.Site.Title}}</h1></a>
+ </header>
+ </div>
+
+ <div class="main-container">
+ <div class="main wrapper clearfix">