This commit is contained in:
2026-06-14 23:04:25 +02:00
parent 061173a46a
commit 084fb77bcf
22 changed files with 479 additions and 29 deletions

View File

@@ -1,24 +1,22 @@
<!DOCTYPE html>
<!-- <html lang="{{ site.Language.Locale }}" dir="{{ or site.Language.Direction `ltr` }}"> -->
<html>
<head>
{{ partial "head.html" . }}
</head>
<body>
<div class = "all">
<div class = "title">
<header>
{{ partial "header.html" . }}
</header>
</div>
<div class = "container">
<main>
{{ block "main" . }}{{ end }}
</main>
<footer>
{{ partial "footer.html" . }}
</footer>
</div>
</div>
</body>
<head>
{{ partial "head.html" . }}
</head>
<body>
<div class = "all">
<div class = "title">
{{ partial "header.html" . }}
</div>
<div class = "container">
<main>
{{ block "main" . }}{{ end }}
</main>
<footer>
{{ partial "footer.html" . }}
</footer>
</div>
</div>
</body>
</html>

View File

@@ -1,6 +1,4 @@
{{define "main"}}
{{ $image := resources.Get "/NSS_middle.png" }}
<img src="{{ $image.RelPermalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}">
{{.Content}}
{{end}}