commit 0ba2ce59e34652eae39c4c4e815d78919e176291 parent cfb30cb4beeba71b2da0033439a4e88ace130561 Author: René Wagner <rwa@clttr.info> Date: Sun, 30 Jul 2023 16:33:42 +0200 make 'newest hosts' URI absolute including scheme Diffstat:
M | serve/templates/newest_hosts.gmi | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/serve/templates/newest_hosts.gmi b/serve/templates/newest_hosts.gmi @@ -6,7 +6,7 @@ Here are the fifty most recently discovered Gemini hosts by geminispace.info. {% for host in newest_hosts %} -{{ "=> //{} {}: {}".format(host.domain, host.first_seen_at.strftime('%Y-%m-%d'), host.domain) }} +{{ "=> gemini://{} {}: {}".format(host.domain, host.first_seen_at.strftime('%Y-%m-%d'), host.domain) }} {% endfor %} {% include 'fragments/footer.gmi' %}