You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
308 B
12 lines
308 B
<link rel="stylesheet" href="{{ asset('css/components/post_mini.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('css/components/post_all.css') }}">
|
|
|
|
|
|
<div id="wrapper">
|
|
<h1>All posts</h1>
|
|
|
|
{% for post in posts %}
|
|
{% include 'post/post_mini.html.twig' with {'post' : post} %}
|
|
{% endfor %}
|
|
</div>
|