{% extends 'base.jinja' %} {% from '_helpers.jinja' import render_pagination with context %} {% block head %}{% endblock %} {% block title %}{{ _('Blog') }}. {{ _('Page') }} {{ posts.page }}{% endblock %} {% block metadescription %}{{ _('Blog') }} - {{ config['TITLE'] }}. {{ _('Page') }} {{ posts.page }}{% endblock %} {% block main %} {% set bread_crumbs = [(url_for('nereid.website.home'), _('Home')), (url_for('nereid.blog.category.all'), _('Blog'))] %} {% include 'nav.jinja' %}
{% if posts %} {% for post in posts %}

{{ post.title }}

{{ _('On') }} {{ post.published_on|dateformat }} {{ _('by') }} {% if post.author %}{{ post.author }}{% else %}{{ post.create_uid.name }}{% endif %}
{{ post.description|safe|truncate(1000, True) }}
{% endfor %} {% if posts.pages > 1 %}{{ render_pagination(posts, None, 'nereid.blog.category.all') }}{% endif %} {% else %}
{{ _('Posts in this category is dissabled or empty') }}.
{% endif %}
{% endblock %}