您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

single.html 653B

12345678910111213141516171819
  1. {{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
  2. {{ define "main" }}
  3. <article class="center cf pv5 mw7">
  4. <p class="f6 fw8">
  5. {{ humanize .Section | upper }}
  6. </p>
  7. <h1 class="f1">
  8. {{ .Title }}
  9. </h1>
  10. {{/* TODO: Add Hugo author */}}
  11. <time class="f6 mv4 dib tracked" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
  12. {{ .Date.Format "January 2, 2006" }}
  13. </time>
  14. <section class="nested-copy-line-height lh-copy serif f4 measure-wide-l nested-links nested-img mid-gray">
  15. {{ .Content | markdownify }}
  16. </section>
  17. {{ partial "tags.html" . }}
  18. </article>
  19. {{ end }}