blob: c7268192374a079c113b54dff0ed0902453566f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
layout: default
title: Your New Jekyll Site
---
<div id="home">
<h1>Blog Posts</h1>
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
|