56 lines
2.1 KiB
Twig
56 lines
2.1 KiB
Twig
{% extends 'global/master.twig' %}
|
|
|
|
{% set newsPosts = viewPost and postExists ? [news.posts[postExists]] : news.posts|batch(postsPerPage)[get.page|default(1) - 1] %}
|
|
|
|
{% if viewPost and postExists %}
|
|
{% set commentsCategory = 'news-' ~ newsPosts[0].news_category ~ '-' ~ newsPosts[0].news_id %}
|
|
{% set comments = newsPosts[0].news_comments.comments %}
|
|
{% else %}
|
|
{% set paginationPages = news.posts|batch(postsPerPage) %}
|
|
{% set paginationUrl %}{{ route('news.index') }}{% endset %}
|
|
{% endif %}
|
|
|
|
{% set title %}
|
|
{% if not (viewPost ? postExists : newsPosts|length) %}Post does not exist!{% elseif viewPost and postExists %}{{ newsPosts[0].news_title }}{% else %}News{% endif %}
|
|
{% endset %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block css %}
|
|
<style type="text/css">
|
|
.pagination {
|
|
float: right;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="content">
|
|
<div class="content-column news">
|
|
<div class="head">{{ title }}</div>
|
|
{% if (viewPost ? postExists : newsPosts|length) %}
|
|
{% for post in newsPosts %}
|
|
{% include 'elements/newsPost.twig' %}
|
|
{% if viewPost and postExists %}
|
|
{% include 'elements/comments.twig' %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% if not (viewPost and postExists) and news.posts|batch(postsPerPage)|length > 1 %}
|
|
<div>
|
|
{% include 'elements/pagination.twig' %}
|
|
<div class="clear"></div>
|
|
</div>
|
|
{% endif %}
|
|
{% else %}
|
|
<div style="padding: 20px;">
|
|
<h1>The requested news post does not exist!</h1>
|
|
There are a few possible reasons for this;
|
|
<ul style="margin-left: 30px;">
|
|
<li>The post may have been deleted due to irrelevancy.</li>
|
|
<li>The post never existed.</li>
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|