templates/hello/index.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block title %}Uiuiui!{% endblock %}
  3. {% block body %}
  4.     <div>
  5.         {% if messages|slice(0,limit)|length > 0 %}
  6.             {% for key,m in messages|slice(0,limit) %}
  7.                 <div>
  8.                     <a href="{{ url("app-show",{id:key}) }}">{{ m.message }}</a>
  9.                 </div>
  10.                 {{ include('hello/_message.html.twig',{ message:m}) }}
  11.                 {% if not loop.last %},{% endif %}
  12.             {% endfor %}
  13.         {% else %}
  14.             nix da
  15.         {% endif %}
  16.     </div>
  17. {% endblock %}