Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

article.html 473B

12345678910111213141516
  1. {{ define "main" }}
  2. {{ $section := where .Data.Pages "Section" .Section }}
  3. <article class="cf pa3 pa4-m pa4-l nested-copy-line-height nested-img">
  4. <h1>
  5. {{ .Title }}
  6. </h1>
  7. <div class="{{ .Site.Params.copyClass }}">
  8. {{ .Content }}
  9. </div>
  10. <section class="flex-ns flex-wrap justify-between w-100 mt5 v-top">
  11. {{ range sort $section "Date" "desc" }}
  12. {{ .Render "summary" }}
  13. {{ end }}
  14. </section>
  15. </article>
  16. {{ end }}