Skip to content

Commit

Permalink
Linting corrections regarding the width and height on img tag
Browse files Browse the repository at this point in the history
  • Loading branch information
dlopezvsr committed Sep 6, 2024
1 parent cd0f6d5 commit 487df82
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
<source media="(min-width: 768px)" srcset="{% image_url banner "fill-1984x480" %}">
<source media="(min-width: 576px)" srcset="{% image_url banner "fill-1536x390" %}">
{# Fallback Image #}
<img src="{% image_url banner "fill-1536x390" %}" alt="">
<img src="{% image_url banner "fill-1536x390" %}" alt="" width="1536" height="390">
</picture>
{% else %}
<img src="{% static "_images/banner-black-white-marble.jpg" %}" alt="">
<img src="{% static "_images/banner-black-white-marble.jpg" %}" alt="" width="" height="">
{% endif %}
{% endwith %}

Expand Down

0 comments on commit 487df82

Please sign in to comment.