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

head.html « chrome « layouts « multilingual « examples - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44d1d7362809c27aaa99ac3df8a578e107705da7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<html lang="{{ .Params.lang }}">
<head>
	<meta charset="utf-8">
	{{ if .Title }}
		{{ if (eq .Params.lang "et") }}
		<title>Mitmekeelne - {{ .Title }}</title>
		{{ else }}
		<title>Multilingual - {{ .Title }}</title>
		{{ end }}
	{{ end }}
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="stylesheet" href="/static/main.css">
</head>
<body>