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.

article.html 414B

7 anos atrás
7 anos atrás
7 anos atrás
7 anos atrás
7 anos atrás
12345678910111213
  1. {{ define "main" }}
  2. {{ $section := where .Data.Pages "Section" .Section }}
  3. <article class="pa3 pa4-ns nested-copy-line-height nested-img">
  4. <div class="{{ .Site.Params.copyClass }}">
  5. {{ .Content }}
  6. </div>
  7. <section class="flex-ns flex-wrap justify-around mt5">
  8. {{ range sort $section "Date" "desc" }}
  9. {{ .Render "summary" }}
  10. {{ end }}
  11. </section>
  12. </article>
  13. {{ end }}