You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
913 B
HTML
26 lines
913 B
HTML
{{ define "main" }}
|
|
{{ partial "paige_title_content.html" . }}
|
|
{{ partial "paige_description.html" . }}
|
|
{{ partial "paige_date.html" . }}
|
|
{{ if .Params.stretch }}
|
|
<div class="rounded-4 shadow" style="background-image: url('{{ relURL .Params.stretch }}'); background-position: center; background-size: cover; height: 20rem; max-width: 100%"></div>
|
|
{{ end }}
|
|
{{ if .Params.center }}
|
|
<p class="text-center">
|
|
<img class="rounded-4 shadow" src="{{ relURL .Params.center }}" style="max-height: 20rem; max-width: 100%">
|
|
</p>
|
|
{{ end }}
|
|
{{ if .Params.greeting }}
|
|
<h2 class="display-5 fw-bold text-center">{{ .Params.greeting | markdownify }}</h2>
|
|
{{ end }}
|
|
{{ if .Params.blurb }}
|
|
<section>
|
|
<div class="col col-xl-6 mx-auto">
|
|
<p class="lead text-center">{{ .Params.blurb | markdownify }}</p>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|
|
{{ partial "paige_content.html" . }}
|
|
{{ partial "paige_social.html" . }}
|
|
{{ end }}
|