mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-06 08:43:40 +00:00
20 lines
439 B
HTML
20 lines
439 B
HTML
{{ partial "header" . }}
|
|
|
|
{{ if .Content }}
|
|
<div class='entry'>
|
|
{{ partial "entry/cover" . }}
|
|
{{ partial "entry/content" . }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{- $homepageWidgets := .Site.Params.widgets.homepage -}}
|
|
{{- if $homepageWidgets -}}
|
|
<div class='home-widgets'>
|
|
<div class='container sep-before'>
|
|
{{- partial "extras/widget_area" ( dict "Widgets" $homepageWidgets "Scope" . ) -}}
|
|
</div>
|
|
</div>
|
|
{{- end -}}
|
|
|
|
{{ partial "footer" . }}
|