helloworldhellwoorldeofoehfafihuofijoahfgyioafjpafhzguirg uvuizerurg_ozerygvoiuhrgreqiogrehh

This commit is contained in:
Gzod01 2023-10-22 10:14:09 +02:00
parent 3379242f31
commit c00a301523
79 changed files with 1614 additions and 3 deletions

View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
{{- partial "header.html" . -}}
<main class=main id="content">
{{- block "main" . }}{{- end }}
</main>
{{- partial "footer.html" . -}}
</body>
</html>

View file

@ -0,0 +1,15 @@
{{ define "main" }}
<ul class="pages-list list-style-none">
{{ range .Pages }}
<li class=page-item>
<a class=page-item-main href="{{ .Permalink }}">
{{ if .Params.baneer }}
<img src="{{ .Params.baneer }}" class=baneer>
{{ end }}
<p class=title >{{.Title}}</p>
<p class=description>{{ .Description }}</p>
</a>
</li>
{{ end }}
</ul>
{{ end }}

View file

@ -0,0 +1,4 @@
{{ define "main" }}
{{ .Content }}
{{ end }}