single.html 373 B

123456789101112
  1. {{ define "main" }}
  2. <div class="page-title">
  3. <h1>{{.Title}}</h1>
  4. </div>
  5. <div class="content">
  6. {{ with .Content -}}{{ . }}{{ end }}
  7. <ul class="lsn dim post-footer">
  8. <li>/* 最后更新于{{ dateFormat "2006-01-02 15:04 MST" .Lastmod.UTC }} */</li>
  9. </ul>
  10. {{ with .Params.comments -}}{{ partialCached "comments.html" . }}{{- end }}
  11. </div>
  12. {{- end }}