10 lines
309 B
Twig
10 lines
309 B
Twig
{% extends "base.html.twig" %}
|
|
|
|
{% block body %}
|
|
{{ variable }}
|
|
|
|
<a href="{{ path('app_starship_show', {'id' : 1}) }}">Ship 01</a>
|
|
<a href="{{ path('app_starship_show', {'id' : 2}) }}">Ship 02</a>
|
|
<a href="{{ path('app_starship_show', {'id' : 3}) }}">Ship 03 (not found)</a>
|
|
{% endblock %}
|