10 lines
299 B
HTML
10 lines
299 B
HTML
{{ define "main" }}
|
|
<article class="h-entry">
|
|
<h1 class="p-name">{{ .Title }}</h1>
|
|
<time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "Jan 2, 2006" }}</time>
|
|
<div class="e-content">
|
|
{{ .Content }}
|
|
</div>
|
|
</article>
|
|
{{ end }}
|