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

header.html « partials « layouts - gitlab.com/kskarthik/monopriv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a634e757f5684f3a6dee80da94157c1b270193e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<head>
	<meta charset="utf-8">
	<meta name="description" content='{{ .Site.Params.metadesc }}'>
	{{if .IsHome}}
		<meta name="keywords" content='{{ .Site.Params.metakeys }}'>
	{{else}}
		{{if eq .Section "post"}}
		<meta name="keywords" content='{{ range .Params.tags}}{{.}}{{", "}}{{end}}'>
	{{end}}
	<!-- {{range .Params.tags}}{{.}}{{", "}}{{end}} -->
	{{end}}
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	{{ hugo.Generator }}
	<link rel="stylesheet" type="text/css" href='{{ "css/bootstrap.min.css" | absURL }}'>
	<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }}{{ end }}</title>
</head>