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

baseof.html « _default « layouts - github.com/negrel/hugo-theme-pico.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0990db633328b2268f05dae29760b6be73779da (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
<!DOCTYPE html>
<html lang='{{ .Site.LanguageCode }}'>

<head>
	{{ partial "head/metadata.html" . }}
	{{ partial "head/css.html" . }}
	{{ partial "head/js.html" . }}
</head>

<body class="min-h-screen bg-white relative pb-24">
	<div id="top"></div>

	{{- partial "dev/size-indicator.html" . -}}
	{{- partial "header.html" . -}}

	{{ $mainClass := "" }}
	{{ if .IsHome }}
	{{ $mainClass = "lg:max-w-5xl xl:max-w-6xl 2xl:max-w-screen-xl" }}
	{{ end }}

	<main class="w-full px-4 pt-8 mx-auto md:max-w-4xl overflow-x-hidden md:overflow-visible {{ $mainClass }}">
		{{- block "main" . }}{{- end }}
	</main>

	<div class="absolute bottom-0 w-full">
		{{- partial "footer.html" . -}}
		{{/*  {{- partial "dev/parameters.html" . -}} */}}
	</div>
</body>

</html>