{# News Overview -------------------------------------------------- When you view the news overview on the website, this template gets loaded. #} {% extends "_layouts/_master.html" %} {% set bodyClass = "p-news" %} {# Set Query #} {% set data = craft.entries({ section: 'neuigkeiten', limit: 12 }) %} {% paginate data as pageInfo, pageEntries %} {# start: Rel Nav #} {% block appHeader %} {% set vars = { pageInfo: pageInfo } %} {% include '_partials/_header/_siteHeaderLinks.html' with vars %} {% endblock %} {% block appContent %} {% for entry in data %}

{{ entry.title }}

{{ entry.title }}

Posted on {{ entry.postDate.format('F d, Y') }}

Continue reading

{% endfor %} {% endblock %}