-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.html
34 lines (33 loc) · 1.19 KB
/
archive.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
layout: blank
---
<div class="col-lg-12 text-center">
<h2 class="section-heading">Alle Vorträge</h2>
</div>
<div class="col-lg-12">
<ul class="timeline">
{% for post in site.posts %}
{% assign loopindex = forloop.index | modulo: 2 %}
{% if loopindex == 0 %}
<li class="timeline-inverted">
{% else %}
<li>
{% endif %}
<div class="timeline-image">
<img class="img-circle img-responsive" src="/img/talks/{{ post.thumbnail }}" alt="{{ post.title }}">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>{{ post.date | date: "%b %-d, %Y" }}</h4>
<h4 class="subheading">{{ post.title }}</h4>
</div>
<div class="timeline-body">
<p class="text-muted">von {{ post.speaker.name }}</p>
<p class="text-muted">Beginn ist um {{ post.date | date: "%H:%M" }}</p>
<p class="text-muted"><a href="{{ post.url }}">Beschreibung lesen</a></p>
</div>
</div>
</li>
{% endfor %}
</ul>
</div>