diff options
author | neodarz <neodarz@neodarz.net> | 2018-04-19 14:35:44 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2018-04-19 14:35:44 +0200 |
commit | f98c49f8104c1a226c9a75096119944a147e2e83 (patch) | |
tree | 2430fa1d5ad467bc554c06490917c7111044194d | |
parent | 68d7d7241af8b6e30b5e9a0c061a18858870eff5 (diff) | |
download | filmManager-f98c49f8104c1a226c9a75096119944a147e2e83.zip filmManager-f98c49f8104c1a226c9a75096119944a147e2e83.tar.xz |
Add little menu
-rw-r--r-- | app/Resources/views/base.html.twig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/Resources/views/base.html.twig b/app/Resources/views/base.html.twig index bafd28d..f961b43 100644 --- a/app/Resources/views/base.html.twig +++ b/app/Resources/views/base.html.twig @@ -7,6 +7,12 @@ <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" /> </head> <body> + <nav> + <ul> + <li><a href="/">home</a></li> + <li><a href="/film">films</a></li> + <li><a href="/acteur">acteurs</a></li> + </ul> {% block body %}{% endblock %} {% block javascripts %}{% endblock %} </body> |