Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

index.html 952B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {{ define "main" }}
  2. <main class="cf ph3 ph5-l pv3 pv4-l f4 tc center measure-wide lh-copy mid-gray">
  3. {{ .Content }}
  4. </main>
  5. <div class="flex pa3 pa4-ns w-70 center">
  6. {{ $section := where .Data.Pages "Section" "article" }}
  7. <section class="w-60 pa4 bg-white">
  8. {{ range sort (first 1 $section) "Date" "desc" }}
  9. {{ if .Date }}
  10. <date class="f6">
  11. {{ .Date.Format "January 2, 2006" }}
  12. </date>
  13. {{ end }}
  14. <h1 class="f3 near-black">
  15. <a href="{{ .URL }}" class="link black dim">
  16. {{ .Title }}
  17. </a>
  18. </h1>
  19. <div class="nested-links f5 nested-copy-line-height">
  20. <p>
  21. {{ .Summary }}
  22. </p>
  23. </div>
  24. {{ end }}
  25. </section>
  26. <section class="w-30 ph4">
  27. {{ range sort (first 2 (after 1 $section)) "Date" "desc" }}
  28. <h2 class="f4">{{ .Title }}</h2>
  29. {{ end }}
  30. </section>
  31. </div>
  32. {{ end }}