fix: duplicative alt
This commit is contained in:
parent
ffce24a909
commit
a3a08afd50
2 changed files with 2 additions and 3 deletions
|
@ -205,7 +205,6 @@ export default {
|
||||||
normalized['subtext'] = item['rating']
|
normalized['subtext'] = item['rating']
|
||||||
}
|
}
|
||||||
if (item.type === 'book') {
|
if (item.type === 'book') {
|
||||||
normalized['alt'] = `${item['title']} by ${item['authors']}`
|
|
||||||
normalized['title'] = `${item['title']} by ${item['authors']}`
|
normalized['title'] = `${item['title']} by ${item['authors']}`
|
||||||
normalized['rating'] = item['rating']
|
normalized['rating'] = item['rating']
|
||||||
if (item['rating']) normalized['subtext'] = item['rating']
|
if (item['rating']) normalized['subtext'] = item['rating']
|
||||||
|
|
|
@ -19,9 +19,9 @@
|
||||||
{%- if loading -%}{{ loading }}{%- else -%}lazy{%- endif -%}
|
{%- if loading -%}{{ loading }}{%- else -%}lazy{%- endif -%}
|
||||||
{%- endcapture -%}
|
{%- endcapture -%}
|
||||||
{% if shape == 'square' %}
|
{% if shape == 'square' %}
|
||||||
<img src="https://coryd.dev/.netlify/images/?url={{ item.image }}&fit=cover&w=240&h=240&fm=webp&q=80" alt="{{ alt }}" loading="{{ loadingStrategy }}" decoding="async" width="240" height="240" />
|
<img src="https://coryd.dev/.netlify/images/?url={{ item.image }}&fit=cover&w=240&h=240&fm=webp&q=80"{% if alt %} alt="{{ alt }}"{% endif %} loading="{{ loadingStrategy }}" decoding="async" width="240" height="240" />
|
||||||
{% else %}
|
{% else %}
|
||||||
<img src="https://coryd.dev/.netlify/images/?url={{ item.image }}&fit=cover&w=200&h=307&fm=webp&q=80" alt="{{ alt }}" loading="{{ loadingStrategy }}" decoding="async" width="200" height="307" />
|
<img src="https://coryd.dev/.netlify/images/?url={{ item.image }}&fit=cover&w=200&h=307&fm=webp&q=80"{% if alt %} alt="{{ alt }}"{% endif %} loading="{{ loadingStrategy }}" decoding="async" width="200" height="307" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|
Reference in a new issue