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

hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
12345678910111213141516171819
  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. <p class="f6 b helvetica tracked">
  6. {{ humanize .Section | upper }}
  7. </p>
  8. <h1 class="f1">
  9. {{ .Title }}
  10. </h1>
  11. <section class="nested-copy-line-height lh-copy f4 nested-links nested-img mid-gray">
  12. {{ .Content }}
  13. </section>
  14. </article>
  15. <div class="ph3 mt2 mt6-ns">
  16. {{ partial "menu-contextual.html" . }}
  17. </div>
  18. </div>
  19. {{ end }}