uci-hugo-doc/layouts/posts/single.html

11 lines
303 B
HTML
Raw Normal View History

2020-01-12 06:33:02 -08:00
{{ 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 }}