site/templates/index/news.html

12 lines
297 B
HTML

<h2>news</h2>
<ul>
{% set s = get_section(path="news/_index.md") %}
{% for p in s.pages %}
{% if loop.index > 3 %}
<li><a href="/news#news-item-4">older news</a></li>
{% break %}
{% endif %}
<li><a href="{{ p.permalink }}">{{ p.title }}</a></li>
{% endfor %}
</ul>