From 05a17940c913b5a63a1fc7e6d69bc91fefc0ebfe Mon Sep 17 00:00:00 2001
From: magicfelix <felix@felix-zauberer.de>
Date: Fri, 31 Jan 2025 17:53:13 +0100
Subject: [PATCH] Fix get_url

---
 templates/base.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/base.html b/templates/base.html
index 074054b..dfe0d3a 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -25,7 +25,7 @@
                 <meta property="og:type" content="{% block og_type %}{{ thing.extra.og.type | default(value='article') }}{% endblock og_type %}" />
                 <meta property="og:url" content="{% block og_url %}{{ thing.permalink | safe }}{% endblock og_url %}" />
                 {% if thing.extra.depiction %}
-                    <meta property="og:image" content="{{ get_url(path="@/" ~ thing.relative_path, trailing_slash=true, lang=lang) }}{{ thing.extra.depiction.image | safe }}" />              <meta property="og:image:alt" content="{{ thing.extra.depiction.alt }}" />
+                    <meta property="og:image" content="{{ get_url(path="@/" ~ thing.relative_path, trailing_slash=true) }}{{ thing.extra.depiction.image | safe }}" />              <meta property="og:image:alt" content="{{ thing.extra.depiction.alt }}" />
                 {% elif config.extra.og.image %}
                     <meta property="og:image" content="{{ get_url(path=config.extra.og.image.url) }}" />
                     <meta property="og:image:alt" content="{{ config.extra.og.image.alt }}" />
-- 
GitLab