1 {% extends '@RapsysBlog/_base.html.twig' %}
5 <h1><a href="{{ path('rapsys_blog_article') }}">{{ title }}</a></h1>
6 <p>{{ description }}</p>
9 {% for article in articles %}
12 <h2><a href="{{ path('rapsys_blog_article_view', {'id': article.id, 'slug': article.slug}) }}">{{ article.title }}</a></h2>
15 <p>{{ article.description }}</p>
16 {% if article.keywords is defined and article.keywords %}
18 {% for keyword in article.keywords %}
19 <a href="{{ path('rapsys_blog_keyword_view', {'id': keyword.id, 'slug': keyword.slug}) }}">{{ keyword.title }}</a>
26 <a href="{{ path('rapsys_blog_article_view', {'id': article.id, 'slug': article.slug}) }}">{% trans %}Read more{% endtrans %}...</a>
32 {% if articles_prev is defined or articles_next is defined %}
35 {% if articles_prev is defined %}
36 <a href="{{ articles_prev }}" rel="prev">< {% trans %}Previous articles{% endtrans %}</a>
38 {% if articles_next is defined %}
39 <a href="{{ articles_next }}" rel="next">{% trans %}Next articles{% endtrans %} ></a>