diff options
Diffstat (limited to 'blog/_includes/news.html')
-rw-r--r-- | blog/_includes/news.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/blog/_includes/news.html b/blog/_includes/news.html index a8daaeb..e9f6138 100644 --- a/blog/_includes/news.html +++ b/blog/_includes/news.html @@ -2,7 +2,11 @@ <h2>{% t home.latest_news %}</h2> {% for p in site.posts limit: 5 %} {% if p != page %} - {% include post-excerpt.html post=p %} + {% if include.sidebar %} + {% include post-excerpt.html post=p sidebar=true %} + {% else %} + {% include post-excerpt.html post=p %} + {% endif %} {% endif %} {% endfor %} </section> |