aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes/posts/posts.html
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-03-22 13:04:43 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2022-03-22 13:04:43 +0300
commit24332c533008456f4316347071d4183e2ef1d982 (patch)
tree822c783b4a641f3e2a6034184f7552b9a9925170 /_includes/posts/posts.html
parentREADME: update (diff)
downloadjekyll-theme-24332c533008456f4316347071d4183e2ef1d982.tar.gz
jekyll-theme-24332c533008456f4316347071d4183e2ef1d982.zip
rename some includes
Diffstat (limited to '_includes/posts/posts.html')
-rw-r--r--_includes/posts/posts.html23
1 files changed, 0 insertions, 23 deletions
diff --git a/_includes/posts/posts.html b/_includes/posts/posts.html
deleted file mode 100644
index c123ceb..0000000
--- a/_includes/posts/posts.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{% if site.posts.size == 0 %}
- <p class="h3">Sorry, no posts have been added yet.</p>
- <hr/>
-{% else %}
- {% for post in paginator.posts %}
- <div class="post-header">
- <h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
- <div class="post-date">
- <p class="text-muted">
- {% if post.category %}
- <span class="glyphicon glyphicon-folder-open"></span>&nbsp;<a class="category" href="{{ '/' | relative_url }}{{ post.category | slugify: 'pretty' }}/">{{ post.category }}</a>
- {% endif %}
- <span class="glyphicon glyphicon-time"></span>&nbsp;{{ post.date | date: '%-d&nbsp;%b&nbsp;%Y' }}
- </p>
- </div>
- </div>
- {{ post.excerpt | markdownify }}
- <hr/>
- {% endfor %}
- <div class="text-center">
- {% include posts/paginator.html %}
- </div>
-{% endif %}