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

head.html « partials « layouts - github.com/Chen-Zhe/photo-grid.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 24a87a1bbbe36cd05944fc90c6dec26db52dd504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
		<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" />
		{{ range .Site.Params.custom_css }}
			<link rel="stylesheet" href="{{ . }}">
		{{ end }}
		<script src="{{ .Site.BaseURL }}js/modernizr.custom.js"></script>