{{ "%resultsCount% result(s) found"|trans({'%resultsCount%': blogPosts.getTotalItemCount}) }}
{% if blogPosts.getTotalItemCount > 0 %}
| {{'Name' | trans}} |
{{'Category' | trans}} |
{{'Image' | trans}} |
{{'Views' | trans}} |
{{'Status' | trans}} |
|
{% for blogPost in blogPosts %}
|
{{ blogPost.name }}
|
{{ blogPost.category.name }}
|
|
{{ blogPost.views }}
|
{% if blogPost.hidden %}
{{ "Hidden"|trans }}
{% else %}
{{ "Visible"|trans }}
{% endif %}
|
|
{% endfor %}
{{ knp_pagination_render(blogPosts, null, {}, {'align': 'center'}) }}
{% else %}
{% include "Global/message.html.twig" with { type: "info", message: ('No blog posts found'|trans), icon: "fas fa-exclamation-circle" } %}
{% endif %}