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

header.html « partials « layouts - github.com/garvincasimir/hugo-h5bp-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e630a07d9677351f5ada4ea39a68a1568781816f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!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">
    </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">