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.
19 lines
438 B
19 lines
438 B
{% extends 'base.html.twig' %}
|
|
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset ('styles/app.css')}}">
|
|
<link rel="stylesheet" href="{{ asset('css/components/post_mini.css') }}">
|
|
{% endblock %}
|
|
|
|
{% block title %}All posts{% endblock %}
|
|
|
|
{% block body%}
|
|
<div id="wrapper">
|
|
<h1>{{title}}</h1>
|
|
|
|
{% for post in posts %}
|
|
{% include 'post/post_mini.html.twig' with {'post' : post} %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|