init for the hugo site

This commit is contained in:
magmaus3 2023-08-09 19:27:08 +02:00
commit 4a54106436
Signed by: magmaus3
GPG key ID: 966755D3F4A9B251
16 changed files with 156 additions and 0 deletions

12
layouts/post.html Normal file
View file

@ -0,0 +1,12 @@
{{ define "main" }}
<article>
<aside>
<a href="..">Go up</a>
</aside>
<header>
<h1>{{ .Title }}</h1>
<h2>{{ .Description }}</h2>
</header>
{{ .Content }}
</article>
{{ end }}