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

34
_layouts/event.html Normal file
View file

@ -0,0 +1,34 @@
---
layout: default
---
<div class="post">
<div class="wrapper">
<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>
</div>
{% endfor%}
</div>
</article>
</div>
</div>