commit c014d1d0dc2d421ee0df37ab4ae23506c224cf93 parent 22e2a937f9ed13058cd532beaa26d241cb14d64b Author: Florian Dold <florian@dold.me> Date: Fri, 23 Apr 2021 15:34:27 +0200 layout Diffstat:
| M | talermerchantdemos/templates/common-base.html.j2 | | | 10 | +++++----- |
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/talermerchantdemos/templates/common-base.html.j2 b/talermerchantdemos/templates/common-base.html.j2 @@ -25,15 +25,15 @@ </head> <body> - <header class="demobar" style="display: flex; flex-direction: row;"> - <a href="https://taler.net/"> - <img src="{{ static('logo-white.svg') }}" height="100" width="224" style="margin: 2em 2em"><br/> - </a> - <div style="max-width: 50em"> + <header class="demobar" style="display: flex; flex-direction: row; justify-content: space-between;"> + <div style="max-width: 50em; margin-left: 2em;"> {% block header_content %} <p>This is the header content.</p> {% endblock %} </div> + <a href="https://taler.net/"> + <img src="{{ static('logo-white.svg') }}" height="100" width="224" style="margin: 2em 2em"><br/> + </a> </header>