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

hace 7 años
1234567891011121314151617181920212223242526272829303132
  1. {{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
  2. {{ define "main" }}
  3. {{ $currentPageUrl := .URL }}
  4. {{ $currentSection := where .Site.Pages "Section" .Section }}
  5. <div class="flex flex-wrap">
  6. <aside class="w-20 pa4 bg-light-silver">
  7. <ul>
  8. {{ range $currentSection }}
  9. <li>
  10. <a href="{{ .URL }}" class="link">
  11. {{ .Title }}
  12. </a>
  13. </li>
  14. {{ end }}
  15. </ul>
  16. </aside>
  17. <article class="center cf pv5 measure-wide-l">
  18. <h4 class="f6">
  19. {{ humanize .Section | upper }}
  20. </h4>
  21. <h1>
  22. {{ .Title }}
  23. </h1>
  24. <div class="nested-copy-line-height nested-links nested-img mid-gray measure-wide-l">
  25. {{ .Content | markdownify }}
  26. </div>
  27. </article>
  28. </div>
  29. {{ end }}