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

github.com/devcows/hugo-universal-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Moreno <adrian@morenomartinez.com>2016-06-14 15:50:18 +0300
committerAdrian Moreno <adrian@morenomartinez.com>2016-06-14 15:50:18 +0300
commit9d0945696f38ba96cfba54af5c6358d614177100 (patch)
tree307fb730439ed385aa5c7b50e5b083044a5b916e /layouts/partials/head.html
parent7362916016d21809411b133408d0c5ed78280558 (diff)
Initial commit with first porting efforts
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r--layouts/partials/head.html62
1 files changed, 62 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..1629a35
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,62 @@
+<head>
+ <meta charset="utf-8">
+ <meta name="robots" content="all,follow">
+ <meta name="googlebot" content="index,follow,snippet,archive">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ <title>{{ .Title }}</title>
+
+ <meta name="author" content="{{ .Site.Author.name }}" />
+ <meta name="keywords" content="">
+
+ {{ if .Description }}
+ <meta name="description" content="{{ .Description }}">
+ {{ end }}
+
+ {{ .Hugo.Generator }}
+
+ <link href='http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,500,700,800' rel='stylesheet' type='text/css'>
+
+ <!-- Bootstrap and Font Awesome css -->
+ <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
+ <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
+
+ <!-- Css animations -->
+ <link href="{{ .Site.BaseURL }}css/animate.css" rel="stylesheet">
+
+ <!-- Theme stylesheet, if possible do not edit this stylesheet -->
+ <link href="{{ .Site.BaseURL }}css/style.default.css" rel="stylesheet" id="theme-stylesheet">
+
+ <!-- Custom stylesheet - for your changes -->
+ <link href="{{ .Site.BaseURL }}css/custom.css" rel="stylesheet">
+
+ <!-- Responsivity for older IE -->
+ <!--[if lt IE 9]>
+ <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
+ <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
+ <![endif]-->
+
+ <!-- Favicon and apple touch icons-->
+ <link rel="shortcut icon" href="{{ .Site.BaseURL }}img/favicon.ico" type="image/x-icon" />
+ <link rel="apple-touch-icon" href="{{ .Site.BaseURL }}img/apple-touch-icon.png" />
+ <link rel="apple-touch-icon" sizes="57x57" href="{{ .Site.BaseURL }}img/apple-touch-icon-57x57.png" />
+ <link rel="apple-touch-icon" sizes="72x72" href="{{ .Site.BaseURL }}img/apple-touch-icon-72x72.png" />
+ <link rel="apple-touch-icon" sizes="76x76" href="{{ .Site.BaseURL }}img/apple-touch-icon-76x76.png" />
+ <link rel="apple-touch-icon" sizes="114x114" href="{{ .Site.BaseURL }}img/apple-touch-icon-114x114.png" />
+ <link rel="apple-touch-icon" sizes="120x120" href="{{ .Site.BaseURL }}img/apple-touch-icon-120x120.png" />
+ <link rel="apple-touch-icon" sizes="144x144" href="{{ .Site.BaseURL }}img/apple-touch-icon-144x144.png" />
+ <link rel="apple-touch-icon" sizes="152x152" href="{{ .Site.BaseURL }}img/apple-touch-icon-152x152.png" />
+ <!-- owl carousel css -->
+
+ <link href="{{ .Site.BaseURL }}css/owl.carousel.css" rel="stylesheet">
+ <link href="{{ .Site.BaseURL }}css/owl.theme.css" rel="stylesheet">
+
+ <link rel="alternate" href="{{ "/index.xml" | absURL }}" type="application/rss+xml" title="{{ .Site.Title }}">
+
+ <!-- Facebook OpenGraph tags -->
+ <meta property="og:title" content="{{ .Title }}" />
+ <meta property="og:type" content="website" />
+ <meta property="og:url" content="{{ .URL }}/" />
+ <meta property="og:image" content="{{ .Site.Params.logo }}" />
+
+</head>