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

baseof.html « _default « layouts - github.com/rhnvrm/bodhi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 289b88f478f35a53680ecc069297330064231158 (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
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>

<html>

	<head>
		{{ partial "header.html" . }}
	</head>

	<body>
		{{ partial "head.html" . }}
		{{ partial "menu.html" . }}
		<div id="content">
			{{ partial "nav.html" . }}
			<div id="main">
				{{- block "main" . }}{{- end }}
				{{ partial "footer.html" . }}
			</div>
			{{- block "footerfiles" . }}{{- end }}

			{{ if and .Site.Params.fathomAnalytics .Site.Params.fathomAnalytics.siteID }}
			{{- partial "fathom" . -}}
			{{ end }}

			{{ template "_internal/google_analytics_async.html" . }}
		</div>
		{{- with .Site.Params.Social -}}
		<script>feather.replace({
			width: "1em",
			height: "1em",
		})
		</script>
		{{- end }}
		
		<script src="{{ "/js/main.js" | relURL }}"></script>
	</body>

</html>