Added data, improving UI

This commit is contained in:
Open-Steps.org 2014-12-01 00:39:03 +01:00
parent c709b3b7e9
commit 8428f55745
15 changed files with 248 additions and 29 deletions

View file

@ -12,16 +12,18 @@ layout: default
<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>
<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}}>{{talk.artist}}</a>
<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%}