14 lines
274 B
HTML
14 lines
274 B
HTML
|
{{ define "title" }}
|
||
|
{{ .Title }} - {{ .Site.Title }}
|
||
|
{{ end }}
|
||
|
|
||
|
{{ define "main" }}
|
||
|
<h2 id="{{ .Title }}"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
||
|
{{ with .Lastmod }}
|
||
|
<p>
|
||
|
Posted on {{ dateFormat "Jan 2 2006" . }}
|
||
|
</p>
|
||
|
{{ end }}
|
||
|
{{ .Content }}
|
||
|
{{ end }}
|