16 lines
No EOL
511 B
HTML
16 lines
No EOL
511 B
HTML
{{ define "main" }}
|
|
<h1 class="mb-4">{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
{{ end }}
|
|
|
|
{{ define "sidebar" }}
|
|
<div class="position-sticky">
|
|
{{- partial "widget/header.html" (dict "title" "About Me") -}}
|
|
{{- partial "widget/aboutme.html" (dict "avatar" .Site.Author.avatar "description" .Site.Author.description) -}}
|
|
|
|
{{- with .Site.Author.social }}
|
|
{{- partial "widget/header.html" (dict "title" "Contact Me") -}}
|
|
{{- partial "widget/socials.html" . -}}
|
|
{{ end -}}
|
|
</div>
|
|
{{ end }} |