forked from kneath/kneath.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (22 loc) · 713 Bytes
/
index.html
File metadata and controls
23 lines (22 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: default
head_content:
<link rel="alternate" type="application/atom+xml" href="http://warpspire.com/feed/" />
---
<div class="listing">
{% for post in site.posts %}
{% if post.type == 'link' %}
<div class="post other link">
<span class="icon" title="This is a link elsewhere"></span>
<h2><a href="{{ post.link }}">{{ post.title }}</a></h2>
<p>{{ post.content }}</p>
</div>
{% else %}
<div class="post">
<p class="date">{{ post.date | date: "%B %e, %Y" }}</p>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<p>{{ post.excerpt }} <a href="{{ post.url }}" class="continue">Continue Reading</a></p>
</div>
{% endif %}
{% endfor %}
</div>