From 3c867a09092058c1e73c30d140f203c645368948 Mon Sep 17 00:00:00 2001 From: Heitor Pascoal de Bittencourt Date: Tue, 19 Nov 2024 11:15:16 -0300 Subject: [PATCH 1/2] macros/head: add OpenGraph site_name tag The tag `og:site_name` is an optional OpenGraph[0] tag for the website name. The tag `og:title` is for the page name. This improves displaying the page in embedded "cards". - [0] https://ogp.me/ --- templates/macros/head.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/macros/head.html b/templates/macros/head.html index d882e0c..7f28b90 100644 --- a/templates/macros/head.html +++ b/templates/macros/head.html @@ -78,8 +78,9 @@ {%- endif -%}{# #} - + + {% if og_image %} From 5b2095eb5ad5c3449ff069d8eb87ec61f10c5bf1 Mon Sep 17 00:00:00 2001 From: Heitor Pascoal de Bittencourt Date: Tue, 19 Nov 2024 11:18:43 -0300 Subject: [PATCH 2/2] macros/head: drop site title from og:title This is already in the `og:og-site_name` --- templates/macros/head.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/macros/head.html b/templates/macros/head.html index 7f28b90..e0e818e 100644 --- a/templates/macros/head.html +++ b/templates/macros/head.html @@ -32,7 +32,7 @@ {% macro open_graph(config) %} {%- if page %} {%- set permalink = page.permalink %} - {%- set title = title_macros::title(page_title=page.title, main_title=config.title) %} + {%- set title = page.title %} {%- set description = page.description %} {%- set type = "article" %} {%- if page.extra and page.extra.og_image %}