選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

taxonomy.html 585B

1234567891011121314151617
  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>Below you will find pages that utilize the taxonomy term “{{ .Title }}”</p>
  5. </div>
  6. </article>
  7. <div class="mw8 center">
  8. {{ $section := .Data.Pages }}
  9. <section class="flex-ns flex-wrap justify-around mt5">
  10. {{ range $section }}
  11. <div class="relative w-100 mb4 bg-white">
  12. {{ partial "summary.html" . }}
  13. </div>
  14. {{ end }}
  15. </section>
  16. </div>
  17. {{ end }}