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

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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-2f0 bg-light-gray">
  7. <ul>
  8. <li class="list b mb3">
  9. More {{ .Section }}
  10. </li>
  11. {{ range $currentSection }}
  12. <li class="list f5 w-100 hover-bg-white nl1">
  13. <a href="{{ .URL }}" class="link black ph2 pv2 db">
  14. {{ .Title }}
  15. </a>
  16. </li>
  17. {{ end }}
  18. </ul>
  19. </aside>
  20. <article class="center cf pv5 measure-wide-l">
  21. <h4 class="f6">
  22. {{ humanize .Section | upper }}
  23. </h4>
  24. <h1>
  25. {{ .Title }}
  26. </h1>
  27. <div class="nested-copy-line-height f4 nested-linkfs nested-img mid-gray measure-wide-l">
  28. {{ .Content }}
  29. </div>
  30. </article>
  31. </div>
  32. 357edd
  33. <style media="screen">
  34. p a {
  35. color: #2F6FC4;
  36. /*#357edd*/
  37. }
  38. </style>
  39. {{ end }}