2022-12-13 19:14:48 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
<main>
|
|
|
|
<div class="container mt-2">
|
|
|
|
<h1>{{ .Title }}</h1>
|
2022-12-29 02:27:05 +00:00
|
|
|
<img src='{{ .Site.Author.sammyette.picture }}' width=48 style='border-radius: 100%'>
|
|
|
|
<em class='text-muted'>
|
|
|
|
by <strong>{{ .Site.Author.sammyette.name }}</strong>
|
|
|
|
{{- if isset .Params "date" -}}
|
|
|
|
<time> // {{ .Date.Format "January 2, 2006" }}</time>
|
|
|
|
{{- end -}}
|
|
|
|
</em>
|
|
|
|
<div class='my-4'>
|
|
|
|
{{.Content}}
|
|
|
|
</div>
|
2022-12-13 19:14:48 +00:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
{{ end }}
|