wlo/index.html
Sebastian Kuzminsky f6ea9bc286 add jekyll template
ran "jekyll new ."
2015-11-04 17:28:41 -07:00

20 lines
451 B
HTML

---
layout: default
---
<div class="home">
<h1>Posts</h1>
<ul class="posts">
{% for post in site.posts %}
<li>
<span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>