templates/company/presentation/show.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{ presentation.name|title }} {{ parent() }}{% endblock %}
  3. {% block body %}
  4.     <div class="mx-auto col-md-5 container mt-4">
  5.         <h6>
  6.             <a class="btn btn-outline-primary btn-sm font-weight-bold" href="{{ path('company.new')}}?type={{ presentation.slug }}">
  7.                 Joinez  Baadhi dès maintenant
  8.             </a>
  9.         </h6>
  10.         <h4>{{ presentation.name|title }}</h4>
  11.         <h6 class="text-muted">{{ presentation.abbreviation }}</h6>
  12.         <p>{{ presentation.description }}</p>
  13.     </div>  
  14. {% endblock %}