news-home.html 504 B

123456789101112131415161718192021222324
  1. ---
  2. layout: archive
  3. ---
  4. {{ content }}
  5. {% if paginator %}
  6. {% assign posts = paginator.posts %}
  7. {% else %}
  8. {% assign posts = site.posts %}
  9. {% endif %}
  10. <h2>{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h2>
  11. {% assign news = posts | where: "sneak_preview", "false" %}
  12. {% for post in news %}
  13. {% include archive-single.html %}
  14. {% if post.image %}
  15. <a href="{{ post.link }}"><img src="{{ post.image }}"></a>
  16. {% endif %}
  17. {% endfor %}
  18. {% include paginator.html %}