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

github.com/Chen-Zhe/photo-grid.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r--layouts/partials/head.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..56aba86
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,17 @@
+ <meta charset="UTF-8" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>{{ .Site.Title }}</title>
+ <meta name="description" content="{{ with .Site.Params.description }}{{ . }}{{ end }}" />
+ <meta name="keywords" content="{{ with .Site.Params.keywords }}{{ . }}{{ end }}" />
+ <meta name="author" content="{{ with .Site.Params.author }}{{ . }}{{ end }}" />
+ {{ .Hugo.Generator }}
+ <style>
+ body {
+ background: {{ .Site.Params.bodybgcolor }};
+ color: {{ .Site.Params.bodytextcolor }};
+ }
+ </style>
+ <link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}css/default.css" />
+ <link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}css/component.css" />
+ <script src="{{ .Site.BaseURL }}js/modernizr.custom.js"></script> \ No newline at end of file