From a348de01b03e15ad4a187ccc09b4dd63719821f8 Mon Sep 17 00:00:00 2001 From: thibaud-leclere Date: Sun, 29 Mar 2026 10:22:20 +0200 Subject: [PATCH] feat: add navbar with user dropdown and import modal --- templates/_navbar.html.twig | 59 +++++++++++++++++++++++++++++++++++++ templates/base.html.twig | 1 + 2 files changed, 60 insertions(+) create mode 100644 templates/_navbar.html.twig diff --git a/templates/_navbar.html.twig b/templates/_navbar.html.twig new file mode 100644 index 0000000..83ea4b2 --- /dev/null +++ b/templates/_navbar.html.twig @@ -0,0 +1,59 @@ +{% if app.user %} + + +{# Import Modal #} + +{% endif %} diff --git a/templates/base.html.twig b/templates/base.html.twig index 7c406c1..3e0085b 100644 --- a/templates/base.html.twig +++ b/templates/base.html.twig @@ -13,6 +13,7 @@ {% endblock %} + {% include '_navbar.html.twig' %} {% block body %}{% endblock %}