mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2024-12-25 17:40:50 +00:00
11 lines
224 B
HTML
11 lines
224 B
HTML
|
{{ define "main"}}
|
||
|
<div>
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
<p class="date">{{ .Date.Format "January 2, 2006" }}</p>
|
||
|
<div class="markdown-body">
|
||
|
{{ .Content }}
|
||
|
</div>
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
|