diff options
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/jekyll-theme/posts/feed.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/_includes/jekyll-theme/posts/feed.html b/_includes/jekyll-theme/posts/feed.html index 9e9e268..4fe4a29 100644 --- a/_includes/jekyll-theme/posts/feed.html +++ b/_includes/jekyll-theme/posts/feed.html @@ -2,20 +2,20 @@ <p class="h3">Sorry, no posts have been added yet.</p> {% else %} {% for post in paginator.posts %} - <div class="feed-entry"> + <a href="{{ post.url | relative_url }}" class="feed-entry"> <div class="post-header"> - <h3><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h3> + <h3>{{ post.title }}</h3> <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> + <span class="glyphicon glyphicon-folder-open"></span> <span class="category">{{ post.category }}</span> {% endif %} <span class="glyphicon glyphicon-time"></span> {{ post.date | date: '%-d %b %Y' }} </p> </div> </div> {{ post.excerpt | markdownify }} - </div> + </a> {% endfor %} {% include jekyll-theme/posts/paginator.html %} {% endif %} |