First commit

This commit is contained in:
Open-Steps.org 2014-11-30 23:17:02 +01:00
commit 0599db44e3
24 changed files with 1035 additions and 0 deletions

35
index.html Normal file
View file

@ -0,0 +1,35 @@
---
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>