{% extends '@RapsysBlog/_base.html.twig' %}
{% block content %}
	<section id="content">
		<header>
			<h1><a href="{{ path('rapsys_blog_article') }}">{{ title }}</a></h1>
			<p>{{ description }}</p>
		</header>
		<section>
			{% for article in articles %}
				<article>
					<header>
						<h2><a href="{{ path('rapsys_blog_article_view', {'id': article.id, 'slug': article.slug}) }}">{{ article.title }}</a></h2>
					</header>
					<section>
						<p>{{ article.description }}</p>
						{% if article.keywords is defined and article.keywords %}
							<nav>
								{% for keyword in article.keywords %}
									<a href="{{ path('rapsys_blog_keyword_view', {'id': keyword.id, 'slug': keyword.slug}) }}">{{ keyword.title }}</a>
								{% endfor %}
							</nav>
						{% endif %}
					</section>
					<footer>
						<nav>
							<a href="{{ path('rapsys_blog_article_view', {'id': article.id, 'slug': article.slug}) }}">{% trans %}Read more{% endtrans %}...</a>
						</nav>
					</footer>
				</article>
			{% endfor %}
		</section>
		{% if articles_prev is defined or articles_next is defined %}
			<footer>
				<nav class="pager">
					{% if articles_prev is defined %}
						<a href="{{ articles_prev }}" rel="prev">&lt; {% trans %}Previous articles{% endtrans %}</a>
					{% endif %}
					{% if articles_next is defined %}
						<a href="{{ articles_next }}" rel="next">{% trans %}Next articles{% endtrans %} &gt;</a>
					{% endif %}
				</nav>
			</footer>
		{% endif %}
	</section>
{% endblock %}