freelancer-theme/index.html

21 lines
453 B
HTML
Raw Normal View History

2014-07-19 22:57:28 +00:00
---
layout: default
---
<div class="home">
2014-07-26 15:40:42 +00:00
<h1>Postsss</h1>
2014-07-19 22:57:28 +00:00
<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>