From 3822d1f26d9ad4fa96b18c60861d1d28e68f2ebb Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Thu, 28 Mar 2024 11:45:46 +0100 Subject: [PATCH] Fix external links in further --- templates/shortcodes/further.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/templates/shortcodes/further.html b/templates/shortcodes/further.html index 238c8863..205c134c 100644 --- a/templates/shortcodes/further.html +++ b/templates/shortcodes/further.html @@ -2,10 +2,15 @@ <h2>{{title|default(value="Weiteres zu diesem Thema")}}</h2> <div class="columns is-multiline is-same-height"> {% for further in page.extra.further[category] %} + {% if further.link is matching("^[^:/]+://") -%} + {% set link = further.link -%} + {% else -%} + {% set link = get_url(path=further.link) -%} + {% endif -%} <div class="column is-one-third"> <div class="card"> <div class="card-image"> - <a href="{{ get_url(path=further.link)}}"> + <a href="{{ link }}"> <figure class="image is-4by3"> {% set image = resize_image(path="@/" ~ page.colocated_path ~ "/" ~ further.image, width=800, height=600) -%} <img src="{{image.url}}" alt="{{further.alt}}" /> @@ -16,7 +21,7 @@ </a> </div> <div class="card-content"> - <p class="title"><a href="{{get_url(path=further.link)}}">{{further.title}}</a></p> + <p class="title"><a href="{{ link }}">{{further.title}}</a></p> <p class="content"> {{further.description}} </p> -- GitLab