35 lines
640 B
HTML
35 lines
640 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}}>{{post.title}}</a>
|
|
<p>{{post.test}}</p>
|
|
<p>{{post.date}}<a href={{post.video_url}}>Video</a></p>
|
|
|
|
{% for talk in post.talks %}
|
|
|
|
<div class="talk col-md-4">
|
|
<img src={{talk.media_url}}></img>
|
|
<a href={{talk.artist_url}}>{{talk.artist}}</a>
|
|
<p>{{talk.title}}</p>
|
|
</div>
|
|
|
|
{% endfor%}
|
|
|
|
</div>
|
|
|
|
{% endfor%}
|
|
|
|
</div>
|
|
|
|
</div>
|