21 lines
435 B
HTML
21 lines
435 B
HTML
{{ define "main" }}
|
|
<article class="h-entry">
|
|
<h1 class="p-name">{{ .Title }}</h1>
|
|
<div class="e-content">
|
|
{{ .Content }}
|
|
</div>
|
|
{{ if .Date }}
|
|
<p>
|
|
Published on
|
|
<a class="u-url" href="{{ .Permalink }}">
|
|
<time class="dt-published" datetime="{{ .Date }}">{{ .Date.Format "Jan 2, 2006" }}</time>
|
|
</a>
|
|
</p>
|
|
{{ end }}
|
|
</article>
|
|
{{ end }}
|
|
|
|
{{ define "title" }}
|
|
{{ .Title }} | {{ .Site.Title }}
|
|
{{ end }}
|