16 lines
No EOL
530 B
HTML
16 lines
No EOL
530 B
HTML
{{ define "main" }}
|
|
<h1 class="mb-4">{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
{{ end }}
|
|
|
|
{{ define "sidebar" }}
|
|
<div class="position-sticky" style="top: 0.5rem;">
|
|
{{- partial "widget/header.html" (dict "title" "About Me") -}}
|
|
{{- partial "widget/aboutme.html" (dict "avatar" .Site.Params.Avatar "description" .Site.Params.Description) -}}
|
|
|
|
{{ with .Site.Params.Social }}
|
|
{{- partial "widget/header.html" (dict "title" "Contact Me") -}}
|
|
{{- partial "widget/socials.html" . -}}
|
|
{{ end }}
|
|
</div>
|
|
{{ end }} |