29 lines
1,010 B
HTML
29 lines
1,010 B
HTML
<div class="column" style="display: flex; flex-wrap: wrap;">
|
|
<h3 style="flex: 1 1 100%;">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 %}
|
|
<div style="flex: 1 0 100px;padding: 5px;">
|
|
<div class="square-image" style="{% if artist.image != null %}background-image: url('{{ artist.image }}');{% else %}background-color: #333;{% endif %}background-size: cover;"></div>
|
|
{% if artist.link != null %}<a href="{{ artist.link }}" target="_blank" style="text-align: center;"
|
|
rel="noopener noreferrer">{{ artist.name }}</a>
|
|
{% else %}
|
|
{{ artist.name }}
|
|
{% endif %}
|
|
</div>
|
|
{% break %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</div>
|
|
|