Skip to content

Commit

Permalink
fix static paths
Browse files Browse the repository at this point in the history
  • Loading branch information
longhotsummer committed Dec 13, 2023
1 parent da1b4e4 commit 49bf6ec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions peachjam/templates/peachjam/layouts/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,19 @@
href="{% url 'article_feed' %}"/>
{% endifequal %}
{% block favicon %}
<link rel="icon" type="image/ico" href="{% static '/images/favicon.ico' %}" />
<link rel="icon" type="image/ico" href="{% static 'images/favicon.ico' %}" />
<link rel="icon"
type="image/png"
href="{% static '/images/favicon-16x16.png' %}"/>
href="{% static 'images/favicon-16x16.png' %}"/>
<link rel="icon"
type="image/png"
href="{% static '/images/favicon-32x32.png' %}"/>
href="{% static 'images/favicon-32x32.png' %}"/>
<link rel="icon"
type="image/png"
href="{% static '/images/favicon-96x96.png' %}"/>
href="{% static 'images/favicon-96x96.png' %}"/>
<link rel="icon"
type="image/png"
href="{% static '/images/favicon-180x180.png' %}"/>
href="{% static 'images/favicon-180x180.png' %}"/>
{% endblock %}
{% endblock %}
{% block head-css %}{% endblock %}
Expand Down

0 comments on commit 49bf6ec

Please sign in to comment.