fortunes.html.twig 252 B

12345
  1. {% extends "base.html.twig" %}
  2. {% block title "Fortunes" %}
  3. {% block content %}<table><tr><th>id</th><th>message</th></tr>{% for fortune in fortunes %}<tr><td>{{ fortune.id }}</td><td>{{ fortune.message }}</td></tr>{% endfor %}</table>{% endblock %}