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.
25 lines
556 B
25 lines
556 B
{% extends 'base.html.twig' %}
|
|
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset('css/components/form.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('css/components/post_mini.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('css/components/search.css') }}">
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="wrapper">
|
|
<div class="form-container">
|
|
{{ form(form) }}
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
{% if posts is defined %}
|
|
{% for post in posts %}
|
|
{% include 'post/post_mini.html.twig' with { 'post': post} %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
</div>
|
|
{% endblock %}
|