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.
This commit is contained in:
Kumi 2024-09-19 14:23:56 +02:00
parent 2ece00e255
commit 2e766781eb
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -8,7 +8,7 @@
<h2>Example:</h2> <h2>Example:</h2>
<p> <p>
<strong>Original:</strong> https://medium.com/@username/article-title-123abc<br> <strong>Original:</strong> https://medium.com/@username/article-title-123abc<br>
<strong>Small:</strong> https://{{ url_for("home.home", _external=True) }}@username/article-title-123abc <strong>Small:</strong> {{ url_for("home.home", _external=True) }}@username/article-title-123abc
</p> </p>
</div> </div>
{% endblock %} {% endblock %}