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: 14466526428e460938b9e9ffc87c0514f108febe (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
		<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 }}" />
		{{ with .Site.Params.favicon }}<link rel="icon" href="{{ . }}">{{ end }}
		{{ .Hugo.Generator }}
		<style>
		body {
			background: {{ .Site.Params.bodybgcolor }};
			color: {{ .Site.Params.bodytextcolor }};
		}
		a {
			color: {{ .Site.Params.bodytextcolor }};
		}
		button {
			color: {{ .Site.Params.bodytextcolor }};
		}
		</style>
		<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Lato:300,400,700" />
		<link rel="stylesheet" type="text/css" href="{{ "css/default.css" | absURL }}" />
		<link rel="stylesheet" type="text/css" href="{{ "css/component.css" | absURL }}" />
		{{ range .Site.Params.custom_css }}
			<link rel="stylesheet" href="{{ . }}">
		{{ end }}
		<script src="{{ "js/modernizr.custom.js" | absURL }}"></script>