taler-merchant-demos

Python-based Frontends for the Demonstration Web site
Log | Files | Refs | Submodules | README | LICENSE

commit 04a7984b69975260187409a604d60bf101030400
parent 48d3aec35315fe5a77dd46dbfb3d70c3340fda0b
Author: Florian Dold <florian@dold.me>
Date:   Thu, 22 Apr 2021 14:37:21 +0200

default page title

Diffstat:
Mtalermerchantdemos/templates/common-base.html.j2 | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/talermerchantdemos/templates/common-base.html.j2 b/talermerchantdemos/templates/common-base.html.j2 @@ -17,7 +17,7 @@ <html> <head> - <title>{{ gettext("GNU Taler Demo: Introduction") }}</title> + <title>{{ page_title | default(gettext("GNU Taler Demo")) }}</title> <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='pure.css') }}" /> <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='demo.css') }}" /> <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='navbar.css') }}" />