diff options
Diffstat (limited to '')
-rw-r--r-- | _includes/posts/feed.html | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/_includes/posts/feed.html b/_includes/posts/feed.html index b273b5a..14cc41e 100644 --- a/_includes/posts/feed.html +++ b/_includes/posts/feed.html @@ -3,18 +3,20 @@ <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> <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 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> - {{ post.excerpt | markdownify }} {% endfor %} <div class="text-center"> {% include posts/paginator.html %} |