2022-11-13 20:52:45 +01:00
|
|
|
{{ define "main" }}
|
2022-11-23 00:41:16 +01:00
|
|
|
<h1 class="mb-4">{{ .Title }}</h1>
|
|
|
|
{{ .Content }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "sidebar" }}
|
2022-11-28 19:45:15 +01:00
|
|
|
<div class="position-sticky">
|
2022-11-23 00:41:16 +01:00
|
|
|
{{- partial "widget/header.html" (dict "title" "About Me") -}}
|
2023-01-08 14:52:50 +01:00
|
|
|
{{- partial "widget/aboutme.html" (dict "avatar" .Site.Author.avatar "description" .Site.Author.description) -}}
|
2022-11-23 00:41:16 +01:00
|
|
|
|
2023-01-08 14:52:50 +01:00
|
|
|
{{ with .Site.Author.social }}
|
2022-11-23 00:41:16 +01:00
|
|
|
{{- partial "widget/header.html" (dict "title" "Contact Me") -}}
|
|
|
|
{{- partial "widget/socials.html" . -}}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2022-11-13 20:52:45 +01:00
|
|
|
{{ end }}
|