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

article.html 464B

1234567891011121314
  1. {{ define "main" }}
  2. <article class="pa3 pa4-ns nested-copy-line-height nested-img">
  3. <div class="{{ .Site.Params.copyClass }}">
  4. {{ .Content }}
  5. </div>
  6. {{ $section := .Paginate (where .Data.Pages "Section" .Section) }}
  7. <section class="flex-ns flex-wrap justify-around mt5">
  8. {{ range $section.Pages }}
  9. {{ .Render "summary" }}
  10. {{ end }}
  11. </section>
  12. {{ template "_internal/pagination.html" . }}
  13. </article>
  14. {{ end }}