fix: Missing quotation marks
home.html: Fix missing quotation marks in alt attribute in intro image
This commit is contained in:
parent
3b5119f879
commit
45518323f3
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue