Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

single.html 780B

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