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:
parent
2ece00e255
commit
2e766781eb
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
|||
<h2>Example:</h2>
|
||||
<p>
|
||||
<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>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue