您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
487B

  1. <!-- {{/*
  2. Hack to allow generic site image for Nodes until supported
  3. by the Hugo internal opengraph template.
  4. */}}-->
  5. {{ if and (.IsNode) (.Site.Params.images) }}
  6. <meta property="og:image" content="{{ index .Site.Params.images 0 }}">
  7. {{ end }}
  8. <!-- {{/*
  9. If specified, fallback to site image if not overriden at Page level
  10. */}}-->
  11. {{ if and (.IsPage) (not .Params.images) (.Site.Params.images) }}
  12. <meta property="og:image" content="{{ index .Site.Params.images 0 }}">
  13. {{ end }}