|
|
@ -9,23 +9,21 @@
|
|
|
|
<header>
|
|
|
|
<header>
|
|
|
|
<div class="justify-content-center row">
|
|
|
|
<div class="justify-content-center row">
|
|
|
|
<div class="col col-auto text-center">
|
|
|
|
<div class="col col-auto text-center">
|
|
|
|
<div style="max-width: 100ch">
|
|
|
|
{{ if .Title }}
|
|
|
|
{{ if .Title }}
|
|
|
|
<h1 class="display-5 fw-bold">
|
|
|
|
<h1 class="display-5 fw-bold">
|
|
|
|
{{ if .Params.link }}
|
|
|
|
{{ if .Params.link }}
|
|
|
|
<a href="{{ .Params.link }}">{{ .Title | markdownify }}</a>
|
|
|
|
<a href="{{ .Params.link }}">{{ .Title | markdownify }}</a>
|
|
|
|
{{ else }}
|
|
|
|
{{ else }}
|
|
|
|
{{ .Title | markdownify }}
|
|
|
|
{{ .Title | markdownify }}
|
|
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ if .Description }}
|
|
|
|
</h1>
|
|
|
|
<p class="lead">{{ .Description | markdownify }}</p>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ if .Description }}
|
|
|
|
{{ if .PublishDate }}
|
|
|
|
<p class="lead">{{ .Description | markdownify }}</p>
|
|
|
|
<p class="text-muted"><time datetime="{{ .PublishDate.Format `2006-01-02` }}">{{ .PublishDate.Format "January 2, 2006" }}</time></p>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ if .PublishDate }}
|
|
|
|
</div>
|
|
|
|
<p class="text-muted"><time datetime="{{ .PublishDate.Format `2006-01-02` }}">{{ .PublishDate.Format "January 2, 2006" }}</time></p>
|
|
|
|
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
</header>
|
|
|
@ -33,9 +31,7 @@
|
|
|
|
{{ if .Content }}
|
|
|
|
{{ if .Content }}
|
|
|
|
<div class="justify-content-center row">
|
|
|
|
<div class="justify-content-center row">
|
|
|
|
<div class="col col-auto" id="content">
|
|
|
|
<div class="col col-auto" id="content">
|
|
|
|
<div style="max-width:66ch">
|
|
|
|
{{ .Content }}
|
|
|
|
{{ .Content }}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|