mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-02-07 15:19:08 +00:00
16 lines
346 B
HTML
16 lines
346 B
HTML
{{ define "main" }}
|
|
{{- with $.Site.Params.tagline -}}
|
|
<h2 class="site__tagline">{{- . -}}</h2>
|
|
{{- end -}}
|
|
|
|
{{- .Content -}}
|
|
|
|
{{- partial "author/projects.html" . -}}
|
|
|
|
{{- partial "author/support.html" . -}}
|
|
|
|
{{- $showPosts := eq $.Site.Params.showPostsOnHome true -}}
|
|
{{- if $showPosts -}}
|
|
{{- partial "posts.html" . -}}
|
|
{{- end -}}
|
|
{{- end -}} |