lib/site_template/index.html in jekyll-2.0.0.alpha.1 vs lib/site_template/index.html in jekyll-2.0.0.alpha.2
- old
+ new
@@ -1,13 +1,17 @@
---
layout: default
-title: Your New Jekyll Site
---
-<div id="home">
- <h1>Blog Posts</h1>
+<div class="home">
+
+ <h1>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>
+ <li><span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span> <a class="post-link" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
+
+ <p class="rss-subscribe">subscribe <a href="/feed.xml">via RSS</a></p>
+
</div>
\ No newline at end of file