Changing layout of category and tags

This commit is contained in:
Holger Reinhardt 2016-01-04 21:04:16 +01:00
parent a488bb0f59
commit 2a4576bed7
2 changed files with 7 additions and 9 deletions

View file

@ -3,7 +3,7 @@ layout: default
---
<div class="posts">
{% for post in site.posts limit: 6 %}
{% for post in site.posts %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
@ -15,6 +15,4 @@ layout: default
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endfor %}
<a href="/blog/" class="pull-right">more <i class="fa fa-long-arrow-right"></i></a>
</div>