12345678910111213141516171819202122232425 |
- {% extends "base.html.twig" %}
- {% block title %}My cool blog posts{% endblock %}
- {% block body %}
- {% for entry in blog_entries %}
-
- {{ include(['blog/post-inline.html.twig', 'blog/post-block.html.twig'], { 'article': entry }, with_context = false) }}
- {% if not loop.last %}<hr />{% endif %}
- {% endfor %}
- <p>{{ pager }}</p>
- {% endblock %}
- {% block stylesheets %}
- {{ parent() -}}
- <link rel="stylesheet" href="{{ asset('styles/blog.css') }}" />
- {% endblock %}
|