2017-11-04 21:30:32 +00:00
|
|
|
{% extends 'SkobkinPointToolsBundle:Post:base_feed.html.twig' %}
|
|
|
|
|
2017-11-05 23:23:15 +00:00
|
|
|
{% block header_title %}{{ feed_title|trans }} @ Point Tools{% endblock %}
|
2017-11-04 21:30:32 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% if is_feed is defined %}
|
|
|
|
<div class="navigation">
|
|
|
|
{{ knp_pagination_render(posts) }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% for post in posts %}
|
|
|
|
<div class="feed-post panel panel-default">
|
|
|
|
{% include 'SkobkinPointToolsBundle:Post:post.html.twig' with {
|
|
|
|
'post': post,
|
|
|
|
'is_feed': is_feed
|
|
|
|
} %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% if is_feed is defined %}
|
|
|
|
<div class="navigation">
|
|
|
|
{{ knp_pagination_render(posts) }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|