diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 18 |
1 files changed, 1 insertions, 17 deletions
@@ -6,20 +6,4 @@ navbar_link: <span class="glyphicon glyphicon-home"></span> Main page navbar_priority: 1 root_page: true --- -{% if site.posts.size == 0 %} - <p class="h3">Sorry, no posts have been added yet.</p> - <hr/> -{% else %} - {% for post in paginator.posts %} - <h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2> - <p class="text-muted"> - <span class="glyphicon glyphicon-time"></span> Posted on {{ post.date | date: '%-d %B %Y' }} - {%- if post.category %} in <span class="glyphicon glyphicon-folder-open"></span> <a class="category" href="{{ site.baseurl }}/categories/{{ post.category | slugify: 'pretty' }}/">{{ post.category }}</a>{% endif %} - </p> - {{ post.excerpt | markdownify }} - <hr/> - {% endfor %} - <div class="text-center"> - {% include common/paginator.html %} - </div> -{% endif %} +{% include posts/posts.html %} |