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 523B

123456789101112131415161718
  1. {{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
  2. {{ define "main" }}
  3. <div class="flex-l mt2 mw8 center">
  4. <article class="center cf pv5 ph3 ph4-ns mw7">
  5. <header>
  6. <p class="f6 b helvetica tracked">
  7. {{ humanize .Section | upper }}
  8. </p>
  9. <h1 class="f1">
  10. {{ .Title }}
  11. </h1>
  12. </header>
  13. <div class="nested-copy-line-height lh-copy f4 nested-links nested-img mid-gray">
  14. {{ .Content }}
  15. </div>
  16. </article>
  17. </div>
  18. {{ end }}