From 2e766781eb94e5d890df704c7dc4b3d24c11385a Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 19 Sep 2024 14:23:56 +0200 Subject: [PATCH] fix(template): correct URL formatting in home.html Removed an unnecessary 'https://' prefix in the small URL example to ensure proper URL rendering in the home page. This change fixes an issue where the URL template would display incorrectly, potentially causing confusion for users. --- src/small/templates/home.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/small/templates/home.html b/src/small/templates/home.html index 2f0e958..c23b8c2 100644 --- a/src/small/templates/home.html +++ b/src/small/templates/home.html @@ -8,7 +8,7 @@

Example:

Original: https://medium.com/@username/article-title-123abc
- Small: https://{{ url_for("home.home", _external=True) }}@username/article-title-123abc + Small: {{ url_for("home.home", _external=True) }}@username/article-title-123abc

{% endblock %}