Featured image of post Hugo Cheetsheet:列印出所有 .Site 參數

Hugo Cheetsheet:列印出所有 .Site 參數

Hugo Cheetsheet:列印出所有 .Site 參數

config.yaml

params:
  title: "我的網站"
  description: "這是我的 Hugo 網站"
  author: "John Doe"

除錯

列印出所有 .Site 參數

<ul>
  {{ range $key, $value := .Site.Params }}
    <li>{{ $key }}: {{ $value }}</li>
  {{ end }}
</ul>

印出特定的參數

{{ if .Site.Params.author }}
  <p>作者: {{ .Site.Params.author }}</p>
{{ end }}

Reference

All rights reserved,未經允許不得隨意轉載
Built with Hugo
Theme Stack designed by Jimmy