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.

17 lines
373 B

{% extends 'base.html.twig' %}
{% block body %}
<link rel="stylesheet" href="{{ asset('css/components/post_mini.css') }}">
<link rel="stylesheet" href="{{ asset('css/components/post_all.css') }}">
<div id="wrapper">
<h1>{{title}}</h1>
{% for post in posts %}
{% include 'post/post_mini.html.twig' with {'post' : post} %}
{% endfor %}
</div>
{% endblock %}