scopesessions.org/index.html

38 lines
724 B
HTML
Raw Normal View History

2014-11-30 23:17:02 +01:00
---
layout: default
---
<div class="home">
<div class="wrapper container-fluid">
<h1 class="page-heading">Events</h1>
{% for post in site.posts %}
<div class="row event">
2014-12-01 00:39:03 +01:00
<a href={{post.url}}><h3>{{post.title}}</h3></a>
<!-- <p>{{post.date}}</p> -->
2014-11-30 23:17:02 +01:00
{% for talk in post.talks %}
<div class="talk col-md-4">
<img src={{talk.media_url}}></img>
2014-12-01 00:39:03 +01:00
<a href={{talk.artist_url}} target="_blank">{{talk.artist}}</a>
2014-11-30 23:17:02 +01:00
<p>{{talk.title}}</p>
2014-12-01 00:39:03 +01:00
{% if {{talk.video_url}} %}
<a href={{post.video_url}}>Video</a>
{% endif %}
2014-11-30 23:17:02 +01:00
</div>
{% endfor%}
</div>
{% endfor%}
</div>
</div>