| 1234567891011121314151617181920212223242526272829 | {{ define "main" }}	<main class="wrapper">		<h1><a href="/" class="home">{{.Title}}</a></h1>		<div class="dim post-info">			{{ dateFormat ":date_long" .Date.Local }}		</div>		{{ if .Content -}}		<div class="content">			{{ .Content }}		</div>		{{- end }}		<ul class="lsn dim post-footer">			<li>发布于{{ dateFormat "2006-01-02 15:04 MST" .Date.UTC }},最后更新于{{ dateFormat "2006-01-02 15:04 MST" .Lastmod.UTC }}</li>			<li>字 数:{{ .WordCount }}</li>			{{- with .Params.tags }}			<li>标 签:{{- range . -}}<a href="{{ "tags/" | relURL }}{{ . | urlize }}" class="post-tag">{{.}}</a>{{ end }}</li>			{{- end }}			<li></li>			{{- with .PrevInSection }}			<li>上一篇:<a href="{{ .RelPermalink }}">{{ .Title }}</a></li>			{{- end }}			{{- with .NextInSection }}			<li>下一篇:<a href="{{ .RelPermalink }}">{{ .Title }}</a></li>			{{- end }}		</ul>		{{ partialCached "comments.html" . }}	</main>	<hr>{{- end }}
 |