37 lines
724 B
HTML
37 lines
724 B
HTML
---
|
|
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">
|
|
|
|
<a href={{post.url}}><h3>{{post.title}}</h3></a>
|
|
<!-- <p>{{post.date}}</p> -->
|
|
|
|
{% for talk in post.talks %}
|
|
|
|
<div class="talk col-md-4">
|
|
<img src={{talk.media_url}}></img>
|
|
<a href={{talk.artist_url}} target="_blank">{{talk.artist}}</a>
|
|
<p>{{talk.title}}</p>
|
|
{% if {{talk.video_url}} %}
|
|
<a href={{post.video_url}}>Video</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endfor%}
|
|
|
|
</div>
|
|
|
|
{% endfor%}
|
|
|
|
</div>
|
|
|
|
</div>
|