-
Notifications
You must be signed in to change notification settings - Fork 0
/
explorations.html
31 lines (31 loc) · 941 Bytes
/
explorations.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
---
layout: grid
title: Experiments
---
<div id="items" class="wrap">
{% for post in site.categories.explorations %}
<div class="item box col3" onclick="location.href='{{ post.url }}';">
<div class="inner">
{% if post.teaser %}
<div class="info span-8">
{% else %}
<div class="">
{% endif %}
<div class="title index"><a href="{{ post.url }}">{{ post.title }}</a></div>
<div class="pubdate">{{ post.date | date_to_string }}</div>
<div class="hide index">{{ post.categories }}</div>
</div>
{% if post.teaser %}
<div class="image">
<a href="{{ post.url }}"><img width="255px" src="{{ post.teaser }}"></a>
</div>
{% endif %}
{% if post.description %}
<div class="description">
{{ post.description }}
</div>
{% endif %}
</div>
</div>
{% endfor %}
</div>