mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2024-11-09 19:00:34 -05:00
11 lines
285 B
HTML
11 lines
285 B
HTML
{{ define "main"}}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ partial "header.html" . }}
|
|
<!-- date -->
|
|
<p class="date">{{ .Date.Format .Site.Params.singlePageDateFormat }}</p>
|
|
<!-- content -->
|
|
<div class="markdown-body">
|
|
{{ .Content }}
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|