You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
425 B
HTML
20 lines
425 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ $.Site.LanguageCode | default "en" }}">
|
|
<head>
|
|
<title>{{ block "title" . }}{{ with .Params.Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }}</title>
|
|
|
|
{{ partialCached "site-head.html" . }}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
{{ partial "navigation.html" . }}
|
|
|
|
<main class="main">
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
|
|
{{ block "footer" . }}{{ end }}
|
|
</body>
|
|
</html>
|