forked from weusethat/we-use-that
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 759 Bytes
/
index.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
---
layout: default
---
<div class="featured-interviews">
{% for post in site.posts %}
<div class="featured-interview">
<a href="{{ post.url }}">
<img src="/images/featured{{ post.url }}.png">
</a>
<a href="{{ post.url }}">
<div class="title">
{{ post.title }}
</div>
</a>
<div class="subtitle">
{{ post.subtitle }}
</div>
<div class="posted-date">
Posted on {{ post.date | date_to_string }} in
</div>
<div class="tags">
{% for tag in post.tags %}
<a href="/tags/{{ tag }}">
<div class="tag">
{{ tag }}
</div>
</a>
{% endfor %}
</div>
</div>
{% endfor %}
</div>