news-home.html 504 Bytes
Newer Older
Shaden Smith's avatar
Shaden Smith committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: archive
---

{{ content }}


{% if paginator %}
  {% assign posts = paginator.posts %}
{% else %}
  {% assign posts = site.posts %}
{% endif %}


<h2>{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h2>
{% assign news = posts | where: "sneak_preview", "false" %}
{% for post in news %}
  {% include archive-single.html %}
19
20
21
  {% if post.image %}
    <a href="{{ post.link }}"><img src="{{ post.image }}"></a>
  {% endif %}
Shaden Smith's avatar
Shaden Smith committed
22
23
24
{% endfor %}

{% include paginator.html %}