From 3ff458af9d55e9dfa5c88735d26f9a8ba950bf9e Mon Sep 17 00:00:00 2001 From: Hugo Tunius Date: Fri, 8 Mar 2024 17:02:46 +0000 Subject: [PATCH] Fix closing meta tags Meta tags don't need to be self closed and doing so seems to break some OG parsers. --- _layouts/default.html | 55 +++++++++++++++++++++---------------------- 1 file changed, 27 insertions(+), 28 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index ffb79d8..4c334ac 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,71 +1,70 @@ - + - - - - - - - - + > + + + + + + + + + > {% if page.description %} - - - + + + {% else %} - - - + + + {% endif %} {% if page.categories %} {% for category in page.categories limit:1 %} - + {% endfor %} {% endif %} {% if page.image %} - + + > {% else %} + > + > {% endif %} - + + > + > {{ page.title }} - + > + {% include header.html %}