16 lines
513 B
HTML
16 lines
513 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<article>
|
|
<a href="{{ .Permalink }}"><h2 class="title">{{ .Title }}</h2></a>
|
|
{{ if .Date }}
|
|
<time class="date" title='{{ .Date.Format "02 Jan 06 15:04 UTC" }}' datetime='{{ .Date.Format "2006-01-02" }}'><a href="{{ .Permalink }}">#</a> {{ .Date.Format "2006-01-02" }}</time>
|
|
{{ end }}
|
|
<hr />
|
|
<div class="articlecontent">
|
|
{{ .Content }}
|
|
</div>
|
|
<hr />
|
|
{{ if not .Params.disableComments }}{{ partial "comments" }}{{ end }}
|
|
</article>
|
|
</main>
|
|
{{ end }}
|