-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 920 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 920 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
30
31
---
layout: default
title: "Jonathan New's Blog"
description: "A blog on tech and other miscellany"
---
<ul class="article-list">
{% for post in site.posts %}
<li class="article-list-item reveal">
<a href="{{ post.url | relative_url }}" title="{{ post.title }}">
<h5>
{{ post.title }}
<span class="icon icon-ios-arrow-thin-right"></span>
</h5>
</a>
<p>{{ post.description }}</p>
<div class="article-list-footer">
<span class="article-list-date">
{{ post.date | date: "%B %-d, %Y" }}
</span>
<span class="article-list-divider">-</span>
<span class="article-list-divider">-</span>
<div class="article-list-tags">
{% for tag in post.tags %}
<a href="{{ 'tag/' | relative_url }}{{ tag }}">{{ tag }}</a>
{% endfor %}
</div>
</div>
</li>
{% endfor %}
</ul>