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

9 行
365B

  1. {{- $scratch := newScratch -}}
  2. {{- $scratch.Add "index" slice -}}
  3. {{- range .Site.RegularPages -}}
  4. {{- if ne .Params.noindex true -}}
  5. {{- $scratch.Add "index" (dict "title" .Title "tags" .Params.tags "categories" .Params.categories "contents" .Plain "url" .RelPermalink "summary" .Summary) -}}
  6. {{- end -}}
  7. {{- end -}}
  8. {{- $scratch.Get "index" | jsonify -}}