fix: Missing quotation marks

home.html: Fix missing quotation marks in alt attribute in intro image
This commit is contained in:
root 2021-08-07 14:45:43 +02:00
parent 3b5119f879
commit 45518323f3
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ bodyClass: "page-home"
</div>
{% if page.intro_image %}
<div class="col-12 col-md-5 col-lg-6 order-1 order-md-2 position-relative">
<img alt={{ page.title }} class="intro-image{% if page.intro_image_absolute %} intro-image-absolute{% endif %}{% if page.intro_image_hide_on_mobile %} intro-image-hide-mobile{% endif %}" src="{{ page.intro_image | relURL }}" />
<img alt="{{ page.title }}" class="intro-image{% if page.intro_image_absolute %} intro-image-absolute{% endif %}{% if page.intro_image_hide_on_mobile %} intro-image-hide-mobile{% endif %}" src="{{ page.intro_image | relURL }}" />
</div>
{% endif %}
</div>