{% if newsPosts|length == 1 %}{{ newsPosts[0].title }}{% elseif newsPosts|length < 1 %}Post does not exist!{% else %}News {% endif %}
{% if newsPosts|length >= 1 %}
{% for newsPost in newsPosts %}
{% include 'elements/newsPost.tpl' %}
{% endfor %}
{% else %}
The requested news post does not exist!
There are a few possible reasons for this;- The post may have been deleted due to irrelevancy.
- The post never existed.