You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2021/03/10 19:38:35 UTC

[lucene-site] branch main updated: LUCENE-9802: meta property, not meta name

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

rmuir pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene-site.git


The following commit(s) were added to refs/heads/main by this push:
     new cc37dfe  LUCENE-9802: meta property, not meta name
cc37dfe is described below

commit cc37dfe588606ea8a1fc6527f5c5777e81066845
Author: Robert Muir <rm...@apache.org>
AuthorDate: Wed Mar 10 14:37:58 2021 -0500

    LUCENE-9802: meta property, not meta name
    
    Working my way through the facebook debugger...
---
 themes/lucene/templates/lucene/base.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/themes/lucene/templates/lucene/base.html b/themes/lucene/templates/lucene/base.html
index 0120cdd..53d679d 100644
--- a/themes/lucene/templates/lucene/base.html
+++ b/themes/lucene/templates/lucene/base.html
@@ -8,9 +8,9 @@
        search, information retrieval, spell checking, faceting, inverted index,
        open source"/>{% endblock %}
     {% block ogmeta %}
-    <meta name="og:title" content="{{ page.title }}"/>
-    <meta name="og:image" content="http://lucene.apache.org/theme/images/lucene/core/mantle-innovation.png{{ STATIC_RESOURCE_SUFFIX }}"/>
-    <meta name="og:image:secure_url" content="https://lucene.apache.org/theme/images/lucene/core/mantle-innovation.png{{ STATIC_RESOURCE_SUFFIX }}"/>
+    <meta property="og:title" content="{{ page.title }}"/>
+    <meta property="og:image" content="http://lucene.apache.org/theme/images/lucene/core/mantle-innovation.png{{ STATIC_RESOURCE_SUFFIX }}"/>
+    <meta property="og:image:secure_url" content="https://lucene.apache.org/theme/images/lucene/core/mantle-innovation.png{{ STATIC_RESOURCE_SUFFIX }}"/>
     {% endblock %}
     {% block favicon %}<link rel="shortcut icon" type="image/png"
                                                  href="{{ SITEURL }}/theme/images/lucene/lucene-favicon.png{{ STATIC_RESOURCE_SUFFIX }}"/>{% endblock %}