Fixing no image in featured article

This commit is contained in:
Asutosh Palai
2015-08-11 15:30:42 +05:30
parent 44d906124d
commit fa3642b582
5 changed files with 16 additions and 6 deletions

View File

@ -3,12 +3,12 @@ layout: layout
title: "Home"
---
{% for post in site.posts %}
{% for post in site.posts reversed %}
{% if post.categories contains 'cover' %}
<section class="cover">
<img src="/images/tags/featured.png" class="tag">
<a href="{{ post.url }}">
<img src="/images/posts/{{post.image}}" alt="">
<img src="/images/posts/{{post.image}}" alt="" {% if post.image == 'hidden' %} class="hidden" {% endif %}>
<div class="details">
<h2>{{ post.title }}</h2>
{{ post.excerpt | markdownify }}
@ -76,4 +76,4 @@ title: "Home"
itemSelector: '.article-container'
});
}
</script>
</script>