28 lines
488 B
HTML
28 lines
488 B
HTML
{{ define "main" }}
|
|
|
|
<div class="post-header">
|
|
<div class="post-date">
|
|
{{ .Date.Format "2006-01-02 03:04:05" }}
|
|
</div>
|
|
<div class="post-title">
|
|
{{ .Title }}
|
|
<span class="post-author">
|
|
by {{ .Params.author | default site.Params.author }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="post-divider"></div>
|
|
|
|
<content>
|
|
{{ .Content }}
|
|
</content>
|
|
|
|
<p>
|
|
{{ range (.GetTerms "tags") }}
|
|
<a href="{{ .Permalink }}">#{{ .LinkTitle }}</a>
|
|
{{ end }}
|
|
</p>
|
|
|
|
{{ end }}
|