Skip to content

Commit

Permalink
chore: use single quotes to reference static image files
Browse files Browse the repository at this point in the history
this is just to be more consistent with other usages in our codebase
and doesn't change anything functionally.
  • Loading branch information
angela-tran committed Nov 15, 2024
1 parent be5a45d commit c2f1769
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benefits/core/templates/core/landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
{% endblock page-title %}

{% block preload %}
<link rel="preload" as="image" href="{% static "img/benefits-bg-mobile.webp" %}" media="(width < 992px)" />
<link rel="preload" as="image" href="{% static "img/benefits-bg-desktop.webp" %}" media="(width >= 992px)">
<link rel="preload" as="image" href="{% static 'img/benefits-bg-mobile.webp' %}" media="(width < 992px)" />
<link rel="preload" as="image" href="{% static 'img/benefits-bg-desktop.webp' %}" media="(width >= 992px)">
{% endblock preload %}

{% block main-content %}
Expand Down

0 comments on commit c2f1769

Please sign in to comment.