This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 321b6fc4 fix(website): use property attribute for og:description meta 
tag (#1713)
321b6fc4 is described below

commit 321b6fc4eb5b98ad1f80f8544e68f1e0722f52fb
Author: Pratyush Adhikari <[email protected]>
AuthorDate: Mon Aug 3 10:57:09 2026 +0530

    fix(website): use property attribute for og:description meta tag (#1713)
---
 layouts/partials/header.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index eb650c0e..ab8ab306 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -22,10 +22,10 @@
     <meta property="og:site_name" content="{{ .Site.Title }}">
     <meta property="og:url" content="{{ .Permalink }}">
     {{ if .Description}}
-        <meta name="og:description" content="{{ .Description }}">
+        <meta property="og:description" content="{{ .Description }}">
     {{ else }}
         {{ if .Params.preview}}
-        <meta name="og:description" content="{{ .Params.preview }}">
+        <meta property="og:description" content="{{ .Params.preview }}">
         {{ end }}
     {{ end }}
     <meta property="og:type" content="website">

Reply via email to