From 08159b753ece8883f61e59f6bebd7cf410099c33 Mon Sep 17 00:00:00 2001 From: pgarcia Date: Wed, 13 Aug 2025 13:48:56 +0200 Subject: [PATCH] Delete shortcodes/url.tmpl~ --- shortcodes/url.tmpl~ | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 shortcodes/url.tmpl~ diff --git a/shortcodes/url.tmpl~ b/shortcodes/url.tmpl~ deleted file mode 100644 index 4e754a3..0000000 --- a/shortcodes/url.tmpl~ +++ /dev/null @@ -1,21 +0,0 @@ -<%doc> -Template engine: Mako - -Usage: - - {{% url %}} - -where is one of 'xmpp', 'mastodon' or 'peertube' - - Example: {{% url 'mastodon' }} will show the content of MASTODON_URL defined in GLOBAL_CONTEXT of config.py - - -% if _args[0] == 'xmpp': - ${XMPP_URL} -% elif _args[0] == 'mastodon': - ${MASTODON_URL} -% elif _args[0] == 'peertube': - ${PEERTUBE_URL} -% else: - Unknown -% endif