{% extends 'base.html.twig' %}{% block body %} <h1>Tools list</h1> <div class="table-responsive"> <table class="table table-striped"> <thead> <th>Tool name</th> <th>Description</th> </thead> <tbody> <tr> <td><a href="{{ path('pdf_merge_demo') }}">PdfMerge</a></td> <td>Merge one or multiple pdf. In this demo, upload to pdf to show result.</td> </tr> </tbody> </table> </div>{% endblock %}