implement about me section

This commit is contained in:
Michi 2025-03-14 22:05:44 +01:00
parent 3075ea4b90
commit cd355a9eca
8 changed files with 96 additions and 5 deletions

View file

@ -0,0 +1,13 @@
<div id="about" class="about">
{{ with .Site.GetPage "about" }}
<div class="about-part">
{{ with .Params.image }}
<img src='{{ . | relURL }}' alt="" title="">
{{ end }}
</div>
<div class="about-part">
<h1>{{ .Title }}</h1>
<div>{{ .Content }}</div>
</div>
{{ end }}
</div>