Files
biblio/templates/book/index.html.twig
2022-06-10 15:26:23 +02:00

28 lines
661 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Book index{% endblock %}
{% block body %}
<div class="d-flex flex-row justify-content-between align-items-center">
<div>
{% if(searchTerm) %}
<h1>Book search: {{ searchTerm }}</h1>
{% else %}
<h1>Book list</h1>
{% endif %}
</div>
<div>
<a href="{{ path('app_book_new') }}" class="btn btn-primary">Add new</a>
</div>
</div>
<div id="app">
<book-listing></book-listing>
</div>
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('book') }}
{% endblock %}