-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
19 lines (19 loc) · 743 Bytes
/
blog.html
File metadata and controls
19 lines (19 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
layout: default
title: Blog
description: My blog.
permalink: /blog/
---
<div class="content post-list sixteen columns">
<ul class="post-list-body eleven columns">
{% for post in site.categories.blog %}
<li class="post-list-item">
<div class="post-list-item-title-and-time">
<a href="{{ post.url }}" class="links post-list-title" alt="{{ post.title }}" title="{{ post.title }}">{{ post.title }}</a> • <time datetime="{{ post.date | date_to_xmlschema }}" class="post-list-time">{{ post.date | date_to_string }}</time>
</div>
<p>{{ post.excerpt}}</p>
</li>
<br />
{% endfor %}
</ul>
</div>