diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-23 16:52:53 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-23 16:56:55 +0300 |
commit | c8bbc25228a7d199ca6868db7375f1661c3ef6e4 (patch) | |
tree | b6b3c84795e441c05cc2d2a7fbbbfc34a492b377 /_includes/posts/feed.html | |
parent | index.html: reuse page.title (diff) | |
download | jekyll-theme-c8bbc25228a7d199ca6868db7375f1661c3ef6e4.tar.gz jekyll-theme-c8bbc25228a7d199ca6868db7375f1661c3ef6e4.zip |
_includes: move everything to jekyll-theme/
Diffstat (limited to '_includes/posts/feed.html')
-rw-r--r-- | _includes/posts/feed.html | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/_includes/posts/feed.html b/_includes/posts/feed.html deleted file mode 100644 index 4b4ea8b..0000000 --- a/_includes/posts/feed.html +++ /dev/null @@ -1,23 +0,0 @@ -{% if site.posts.size == 0 %} - <p class="h3">Sorry, no posts have been added yet.</p> -{% else %} - {% for post in paginator.posts %} - <div class="post-entry"> - <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> <a class="category" href="{{ '/' | relative_url }}{{ post.category | slugify: 'pretty' }}/">{{ post.category }}</a> - {% endif %} - <span class="glyphicon glyphicon-time"></span> {{ post.date | date: '%-d %b %Y' }} - </p> - </div> - </div> - {{ post.excerpt | markdownify }} - </div> - {% endfor %} - <div class="text-center"> - {% include posts/paginator.html %} - </div> -{% endif %} |