summaryrefslogtreecommitdiff
path: root/talermerchantdemos/templates/menu.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'talermerchantdemos/templates/menu.html.j2')
-rw-r--r--talermerchantdemos/templates/menu.html.j222
1 files changed, 0 insertions, 22 deletions
diff --git a/talermerchantdemos/templates/menu.html.j2 b/talermerchantdemos/templates/menu.html.j2
deleted file mode 100644
index 937030d..0000000
--- a/talermerchantdemos/templates/menu.html.j2
+++ /dev/null
@@ -1,22 +0,0 @@
-{% macro menu(active) -%}
-<div style="display:flex; flex-direction: column;" class="navcontainer">
- <nav class="demolist">
- <a href="{{ env('TALER_ENV_URL_INTRO', '#') + lang + '/' }}"
- {% if active == 'landing' %} class="active" {% endif %}
- >{{gettext("Introduction")}}</a>
- <a href="{{ env('TALER_ENV_URL_BANK', '#') + lang + '/' }}"
- {% if active == 'bank' %} class="active" {% endif %}
- >{{gettext("Bank")}}</a>
- <a href="{{ env('TALER_ENV_URL_MERCHANT_BLOG', '#') + lang + '/' }}"
- {% if active == 'blog' %} class="active" {% endif %}
- >{{gettext("Essay Shop")}}</a>
- <a href="{{ env('TALER_ENV_URL_MERCHANT_DONATIONS', '#') + lang + '/' }}"
- {% if active == 'donations' %} class="active" {% endif %}
- >{{gettext("Donations")}}</a>
- <a href="{{ env('TALER_ENV_URL_MERCHANT_SURVEY', '#') + lang + '/' }}"
- {% if active == 'survey' %} class="active" {% endif %}
- >{{gettext("Tipping/Survey")}}</a>
- {% include 'language-switcher.html.j2' %}
- </nav>
-</div>
-{%- endmacro %}