You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

single.html 1.1KB

7 년 전
7 년 전
7 년 전
7 년 전
7 년 전
7 년 전
123456789101112131415161718192021222324252627282930
  1. {{ define "header" }}
  2. {{/* We can override any block in the baseof file be defining it in the template */}}
  3. {{ partial "page-header.html" . }}
  4. {{ end }}
  5. {{ define "main" }}
  6. <div class="flex-l mt2 mw8 center">
  7. <article class="center cf pv5 ph3 ph4-ns mw7">
  8. <p class="f6 b helvetica tracked">
  9. {{/* Humanize removes hyphens and capitalizes the first word */}}
  10. {{ humanize .Section | upper }}
  11. </p>
  12. <h1 class="f1 athelas">
  13. {{ .Title }}
  14. </h1>
  15. {{/* TODO: Add Hugo author */}}
  16. {{/* Hugo uses Go's date formatting is set by example. Here are two formats */}}
  17. <time class="f6 mv4 dib tracked" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
  18. {{ .Date.Format "January 2, 2006" }}
  19. </time>
  20. <section class="nested-copy-line-height lh-copy serif f4 nested-links nested-img mid-gray">
  21. {{ .Content }}
  22. </section>
  23. {{ partial "tags.html" . }}
  24. </article>
  25. <div class="ph3 mt2 mt6-ns">
  26. {{ partial "menu-contextual.html" . }}
  27. </div>
  28. </div>
  29. {{ end }}