11 lines
No EOL
336 B
HTML
11 lines
No EOL
336 B
HTML
<div class="column">
|
|
|
|
{% for artist in page.deltagande_artists %}
|
|
{% assign author_id = page.artist %}
|
|
{% assign author = site.artists | where: "name", author_id | first %}
|
|
|
|
<div class="square-image" style="background-image: url('{{ author.image }}')"></div>
|
|
|
|
<p class="blurb">{{ author.blurb_text }}</p>
|
|
{% endfor %}
|
|
</div> |