ADD hugo with pipline
All checks were successful
build-to-pages / build (push) Successful in 15s
build-to-pages / push (push) Successful in 10s

This commit is contained in:
Hoernschen 2023-10-31 14:04:49 +01:00
parent 45a317f7dd
commit 124e58c339
Signed by: hoernschen
GPG key ID: 37591FAF4E6D3462
99 changed files with 4452 additions and 1 deletions

View file

@ -0,0 +1,29 @@
{{ with .PrevInSection }}
<div class="prev-post">
<p>
<a href="{{ .RelPermalink }}">
&#8592;
{{ i18n "previous" }}:
{{ .Title }}
</a>
</p>
<p class="prev-post-date">
{{ dateFormat "January 2, 2006" .Date }}
</p>
</div>
{{ end }}
{{ with .NextInSection }}
<div class="next-post">
<p>
<a href="{{ .RelPermalink }}">
{{ i18n "next" }}:
{{ .Title }}
&#8594;
</a>
</p>
<p class="next-post-date">
{{ dateFormat "January 2, 2006" .Date }}
</p>
</div>
{{ end }}