-
Notifications
You must be signed in to change notification settings - Fork 6
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
title: Doohicky
description: a site about nothing
---
<div id="home">
<div class="posts">
<h3>Posts</h3>
<div class="actions"><a href="http://prose.io/#{{ site.github.name }}/{{ site.github.project }}/new/{{ site.github.branch }}/_posts/YYYY-MM-DD-Untitled.md">Make a post.</a></div>
{% for post in site.posts %}
<div class="post">
<div class="post--title">
<a href="{{ post.url }}" class="post--title">{{ post.title }}</a>
</div>
<div class="post--date">{{ post.date | date_to_string }}</div>
{% if post.description %}
<p class="post--description">{{ post.description }}</p>
{% endif %}
</div>
{% endfor %}
</div>
</div>