You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
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 }}