mirror of
https://github.com/thegeeklab/hugo-geekdoc.git
synced 2024-11-04 20:30:40 +00:00
11 lines
303 B
HTML
11 lines
303 B
HTML
{{ define "main" }}
|
|
{{ $dateFormat := default "January 2, 2006" .Site.Params.GeekdocDateFormat }}
|
|
<article class="gdoc-markdown">
|
|
<h1>{{ .Title }}</h1>
|
|
<h5>
|
|
<strong>{{ .Date.Format $dateFormat }}</strong>
|
|
</h5>
|
|
{{ .Content }}
|
|
</article>
|
|
{{ end }}
|