Create jekyll site

This commit is contained in:
Kamil Trzcinski
2015-12-17 12:46:19 +01:00
commit 065b20cef4
8 changed files with 316 additions and 0 deletions

13
index.html Normal file
View File

@ -0,0 +1,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> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>