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

head.html « partials « layouts « multilingual « examples - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fee14e72c2d6b070e2c1b3a6358af87eeeaef3a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html lang="{{ .Params.lang }}">
<head>
	<meta charset="utf-8">
	{{ if .Title }}
		<title>{{ (index .Site.Data.translations .Params.lang).head_title }} - {{ .Title }}</title>
	{{ end }}
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="stylesheet" href="/main.css">
</head>
<body>