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
29 lines (26 loc) · 843 Bytes
/
index.html
File metadata and controls
29 lines (26 loc) · 843 Bytes
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
---
layout: default
head_content:
<link rel="alternate" type="application/atom+xml" href="http://warpspire.com/feed/" />
---
<p class="intro">
Hi! <a href="/about">I'm Kyle</a>, and I use Warpspire to collect my thoughts about product design & development.
</p>
<hr />
<div class="listing">
{% for post in site.posts %}
{% if post.type == 'link' %}
<div class="post other link">
<a class="icon" href="{{ post.url }}" title="This is a link elsewhere">★</a>
<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 class="post-summary">{{ post.summary }}</p>
</div>
{% endif %}
{% endfor %}
</div>