29 lines
No EOL
961 B
HTML
29 lines
No EOL
961 B
HTML
<div class="column">
|
|
<h3>Vem {% if page.category == 'ljudkonst' %}spelar? {% else %}Ställer ut?{% endif %}</h3>
|
|
{% 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 %}<br />
|
|
<div class="square-image" style="background-image: url('{{ artist.image }}');background-size: contain;"></div>
|
|
<p><strong>{{ artist.name }}</p></strong>
|
|
<p class="blurb">{{ artist.blurb_text }}<br />
|
|
{% if artist.link != null %}
|
|
<br /><a href="{{ artist.link }}"
|
|
target="_blank"
|
|
class="cta"
|
|
rel="noopener noreferrer nofollow">{% if page.category == 'ljudkonst'%}Lyssna{% else %}Mer info{% endif %}
|
|
här</a>{% endif %}</p>
|
|
{% break %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</div> |