diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-09 01:03:55 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-09 01:03:55 +0300 |
commit | 2dade5b46964cdbf1c7586c90f7d6969c2c14272 (patch) | |
tree | dff2a18d780709a51c01e87a9b2a425995e464f2 /index.html | |
parent | _config.yml: .travis.yml is no more (diff) | |
download | blog-2dade5b46964cdbf1c7586c90f7d6969c2c14272.tar.gz blog-2dade5b46964cdbf1c7586c90f7d6969c2c14272.zip |
bump jekyll-theme
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 %} |