_layouts/home.html in bubblin-jekyll-1.0.6 vs _layouts/home.html in bubblin-jekyll-1.1.0

- old
+ new

@@ -1,26 +1,30 @@ --- layout: default --- +<div class="wrapper"> -<div class="home"> + <h1 href="{{ "/" | relative_url }}">{{ site.title | escape }}</h1> - {{ content }} + <hr> - <h1 class="page-heading">Posts</h1> + <p class="right">Subscribe <a href="{{ '/feed.xml' | relative_url }}">via RSS</a></p> - <ul class="post-list"> - {% for post in site.posts %} - <li> - {% assign date_format = site.bubblin-jekyll.date_format | default: "%b %-d, %Y" %} - <span class="post-meta">{{ post.date | date: date_format }}</span> + {{ content }} - <h2> - <a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a> - </h2> - </li> - {% endfor %} - </ul> + <h2>Posts</h2> - <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p> + <ul class="pad-vertically"> + {% for post in site.posts %} + <li> + <h3> + <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a> + </h3> -</div> + {% assign date_format = site.bubblin-jekyll.date_format | default: "%b %-d, %Y" %} + <span>{{ post.date | date: date_format }}</span> + + </li> + {% endfor %} + </ul> + +</div> \ No newline at end of file