scopesessions.org/artists.html

60 lines
1.4 KiB
HTML
Raw Normal View History

2015-01-11 10:18:24 +01:00
---
layout: page
title: Artists
permalink: /artists/
---
<div class="content container-fluid">
<div class="row">
<div class="page-title col-md-2 col-md-offset-1">
<h3>{{page.title}}</h3>
2015-01-13 09:42:51 +01:00
<a class="highlight button hvr-sweep-to-top" href="/">Back to home</a>
2015-01-11 10:18:24 +01:00
</div>
<div class="about dark_bg col-md-7">
{% capture counter %}{{ '0' }}{% endcapture %}
2015-02-13 18:09:23 +01:00
{% for post in site.posts %}
{% for talk in post.talks %}
2015-01-11 10:18:24 +01:00
{% if counter == '0' %}
<div class="row">
{% endif %}
<div class="dark_bg col-md-3">
2015-02-13 18:09:23 +01:00
<div class="artist-media">
2015-01-11 10:18:24 +01:00
{% if {{talk.media_artist_url}} %}
2015-02-13 18:09:23 +01:00
<img class="artist-media" src={{talk.media_artist_url}}></img>
2015-01-11 10:18:24 +01:00
{% else %}
2015-02-13 18:09:23 +01:00
<img class="artist-media" src="/assets/no_artist-media.png"></img>
2015-01-11 10:18:24 +01:00
{% endif %}
</div>
2015-02-13 18:09:23 +01:00
<div class="talk-detail">
<h4>{{talk.artist}}</h4>
<a class="button hvr-sweep-to-top" href={{post.url}}>#{{post.number}}</a>
2015-01-11 10:18:24 +01:00
</div>
</div>
{% capture counter %}{{ counter | plus:'1' }}{% endcapture %}
{% if counter == '4' %}
{% capture counter %}{{ '0' }}{% endcapture %}
</div>
{% endif %}
{% endfor %}
{% endfor %}
</div>
</div>
</div>