momangen/_includes/featured-artists.html
2019-06-12 17:37:04 +02:00

25 lines
No EOL
600 B
HTML

<div class="column">
{% for artist_name in page.deltagande_artists %}
{% for artist in site.artists %}
{% capture name -%}
{{ artist.relative_path
| replace_first: artist.collection, ''
| replace_first: '_/', ''
| replace_first: '.md', ''
}}
{%- endcapture %}
{% if name == artist_name %}
<div class="square-image" style="background-image: url('{{ artist.image }}')"></div>
<h3>{{ artist.name }}</h3>
<p class="blurb">{{ artist.blurb_text }}</p>
{% break %}
{% endif %}
{% endfor %}
{% endfor %}
</div>