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
859 B
HTML

{{ define "main" }}
{{ partial "paige-title.html" . }}
{{ partial "paige-description.html" . }}
{{ partial "paige-date.html" . }}
{{ with .Params.stretch }}
<div class="rounded-4 shadow" style="background-image: url('{{ relURL . }}'); background-position: center; background-size: cover; height: 20rem; max-width: 100%"></div>
{{ end }}
{{ with .Params.center }}
<p class="text-center">
<img class="rounded-4 shadow" src="{{ relURL . }}" style="max-height: 20rem; max-width: 100%">
</p>
{{ end }}
{{ with .Params.greeting }}
<h2 class="display-5 fw-bold text-center">{{ . | markdownify }}</h2>
{{ end }}
{{ with .Params.blurb }}
<section>
<div class="col col-lg-7 mx-auto">
<p class="lead text-center">{{ . | markdownify }}</p>
</div>
</section>
{{ end }}
{{ partial "paige-content.html" . }}
{{ partial "paige-social.html" . }}
{{ end }}