Clean start

This commit is contained in:
dolphinau 2025-08-09 19:28:17 +02:00
parent b1cd3b6101
commit 4a087959fc
32 changed files with 35 additions and 307 deletions

View file

@ -0,0 +1,7 @@
<!doctype html>
<html lang="fr" charset="utf-8">
<head> </head>
<body>
{{ block "main" . }}{{ end }}
</body>
</html>

View file

@ -0,0 +1,4 @@
{{ define "main" }}
{{ .Content }}
<p>This line is from <code>layouts/_default/single.html</code>.</p>
{{ end }}

4
layouts/index.html Normal file
View file

@ -0,0 +1,4 @@
{{ define "main" }}
{{ .Content }}
<p>This line is from <code>layouts/index.html</code>.</p>
{{ end }}