summaryrefslogtreecommitdiffstats
path: root/blog/_includes/news.html
blob: 4c39be042945b20e04b9f3fc1bf38b8165fbcc7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<section id="news">
  <h2>Nyheter</h2>
  {% for p in page.pagination.posts %}
    {% if p != page %}
      {% if include.sidebar %}
        {% include post-excerpt.html post=p sidebar=true %}
      {% else %}
        {% include post-excerpt.html post=p %}
      {% endif %}
    {% endif %}
  {% endfor %}
</section>