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.

taxonomy.html 507B

12345678910111213141516
  1. {{ define "main" }}
  2. <article class="cf pa3 pa4-m pa4-l">
  3. <div class="measure-wide-l center f4 lh-copy nested-copy-line-height nested-links nested-img mid-gray">
  4. <p>{{i18n "taxonomyPageList" .}}</p>
  5. </div>
  6. </article>
  7. <div class="mw8 center">
  8. <section class="flex-ns flex-wrap justify-around mt5">
  9. {{ range .Pages }}
  10. <div class="relative w-100 mb4 bg-white">
  11. {{ partial "summary.html" . }}
  12. </div>
  13. {{ end }}
  14. </section>
  15. </div>
  16. {{ end }}