templates/default/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block body %}
  3.     <h1>Tools list</h1>
  4.     
  5.     <div class="table-responsive">
  6.         <table class="table table-striped">
  7.             <thead>
  8.             <th>Tool name</th>
  9.             <th>Description</th>
  10.             </thead>
  11.             
  12.             <tbody>
  13.             <tr>
  14.                 <td><a href="{{ path('pdf_merge_demo') }}">PdfMerge</a></td>
  15.                 <td>Merge one or multiple pdf. In this demo, upload to pdf to show result.</td>
  16.             </tr>
  17.             </tbody>
  18.         </table>
  19.     </div>
  20. {% endblock %}