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

baseof.html « _default « layouts - github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e159eca750116630381af288dfee1cb347b277d (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
<!DOCTYPE html>
<html lang="{{ $.Site.Home.Language | default "en" }}">
{{ partial "head.html" . }}

<body class="{{ .Kind }} {{ anchorize .File.ContentBaseName }} {{ .Section }}">

{{ readFile "static/icons.svg" | safeHTML }}

{{ block "header" . }}
{{ partial "header.html" . }}
{{ end }}

<main>
	{{ block "main" . }}
	<!-- Missing main block -->
	{{ end }}
</main>

{{ block "footer.html" . }}
{{ partialCached "footer.html" . }}
{{ end }}

{{ partial "scripts" . }}
</body>

</html>