thuliteio / seo

Official SEO integration for Thulite
https://seo.thulite.io
MIT License
0 stars 2 forks source link

Info message W3C Markup Validation Service #2

Closed h-enk closed 8 months ago

h-enk commented 1 year ago

See also:

Issue

  {{ with $featured -}}
    <meta property="og:image" content="{{ $featured.Permalink }}"/>
  {{ else -}}
    {{ with $.Site.Params.images -}}
      <meta property="og:image" content="{{ index . 0 | absURL }}"/>
      <meta property="og:image:alt" content="{{ $.Site.Params.title }}">
    {{ end -}}
  {{ end -}}

Results in info message W3C Markup Validation Service:

image

Solution

  {{ with $featured -}}
    <meta property="og:image" content="{{ $featured.Permalink }}">
  {{ else -}}
    {{ with $.Site.Params.images -}}
      <meta property="og:image" content="{{ index . 0 | absURL }}">
      <meta property="og:image:alt" content="{{ $.Site.Params.title }}">
    {{ end -}}
  {{ end -}}
h-enk commented 8 months ago

Tested/verified. Fixed w/ v2.2.0