let's try this shit!
This commit is contained in:
parent
97a745be2e
commit
3d2858141d
2 changed files with 7 additions and 7 deletions
|
|
@ -11,8 +11,8 @@ event_data:
|
||||||
end_datetime: 2019-06-14 23:00:00 +0200
|
end_datetime: 2019-06-14 23:00:00 +0200
|
||||||
category: music
|
category: music
|
||||||
deltagande_artists:
|
deltagande_artists:
|
||||||
- max_park
|
- Max Park
|
||||||
- knivtid
|
- Knivtid
|
||||||
slutet_salskap: true
|
slutet_salskap: true
|
||||||
published: true
|
published: true
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<div class="column">
|
<div class="column">
|
||||||
|
|
||||||
{% assign author_id = page.artist %}
|
{% for name in page.deltagande_artists %}
|
||||||
{% assign author = site.artists | where: "name", author_id | first %}
|
{% assign item = site.artists | where: "name", name | first %}
|
||||||
|
|
||||||
|
|
||||||
{% for artist in page.deltagande_artists %}
|
<div class="square-image" style="background-image: url('{{ item.image }}')"></div>
|
||||||
<div class="square-image" style="background-image: url('{{ author.image }}')"></div>
|
|
||||||
|
|
||||||
<p class="blurb">{{ author.blurb_text }}</p>
|
<p class="blurb">{{ item.blurb_text }}</p>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue