20 lines
474 B
HTML
20 lines
474 B
HTML
{{ define "profilepic" }}<div class="nopic"></div>{{ end }}
|
|
{{ define "contentclass" }}blog{{ end }}
|
|
|
|
{{ define "pagename" }}
|
|
<div id="post_head">
|
|
<div id="post_date">{{ .Date | time.Format ":date_medium" }}</div>
|
|
{{ with .GetTerms "blog/tags" }}
|
|
<ul id="post_tags">
|
|
{{ range . -}}
|
|
<li class="tag"><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
|
|
{{- end }}
|
|
</ul>
|
|
{{ end }}
|
|
<h1>{{ .Title }}</h1>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{ .Content }}
|
|
{{ end }}
|