{% extends "base.html" %} {% block title %}{{ title }}News{% endblock %} {% block bodyclass %}News{% endblock %} {% block content %} {% include "partials/cookie-consent-placeholder.njk" %} {{ __('All News') }} {{ __('FILTER') }} {{ __('Categories') }} {% for category in categories %} {{ __(category.title) }} {% endfor %} {{ __('Filter') }} {% for post in posts %} {{ post.title }} {{ post.modified }} {{ post.content | safe | truncate(200) }} {{ __('READ STORY') }} {% endfor %} {% endblock %}
{{ __('All News') }}
{{ __('FILTER') }}
{{ __('Categories') }}
{{ post.title }}
{{ post.modified }}
{{ post.content | safe | truncate(200) }}
{{ __('READ STORY') }}