35 lines
809 B
HTML
35 lines
809 B
HTML
---
|
|
layout: default
|
|
---
|
|
<div class="event_page">
|
|
|
|
<div class="wrapper container-fluid">
|
|
|
|
<header class="post-header">
|
|
<h1 class="post-title">{{ page.title }}</h1>
|
|
<p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
|
|
</header>
|
|
|
|
<article class="post-content">
|
|
|
|
<div class="row event">
|
|
|
|
{% for talk in page.talks %}
|
|
|
|
<div class="talk col-md-4">
|
|
<img src={{talk.media_url}}></img>
|
|
<h3 href={{talk.artist_url}}>{{talk.artist}}</h3>
|
|
<h4>{{talk.title}}</h4>
|
|
<p>{{talk.description}}</p>
|
|
<a href={{talk.video_url}}>Video</a>
|
|
</div>
|
|
|
|
{% endfor%}
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
</div>
|