{% extends 'site.html' %} {% block title %}{{ LANG.NEWS }}{% endblock %} {% block content %}
{% if view_single == 1 %}


{{ LANG.POSTED_BY_ON|replace({'%author%':news.author,'%date%': displayDate(news.date)}) }}
{{ news.content|raw }}
{% else %}
{% for news in news_result %}
{{ LANG.POSTED_BY_ON|replace({'%author%':news.author,'%date%': displayDate(news.date)}) }}
{{ news.content|raw }}
{% endfor %} {% if total_pages > 0 %}
{% if total_pages > page %} « {{ LANG.OLDEST_POSTS }} {% endif %} {% if page != 1 %} {{ LANG.NEWEST_POSTS }} » {% endif %}
{% endif %} {% endif %}
{% endblock %}