diff --git a/i2p2www/pages/global/layout.html b/i2p2www/pages/global/layout.html index 4926b6c8..0a67e616 100644 --- a/i2p2www/pages/global/layout.html +++ b/i2p2www/pages/global/layout.html @@ -35,7 +35,7 @@
{{ _('Skip navigation') }}
- +

{{ self.title() }}

diff --git a/i2p2www/static/styles/duck/default.css b/i2p2www/static/styles/duck/default.css index 2b08c416..c10d6e0e 100644 --- a/i2p2www/static/styles/duck/default.css +++ b/i2p2www/static/styles/duck/default.css @@ -81,6 +81,11 @@ div#topbar #logo img:hover { opacity: 0.6; } +div#topbar #scalelogo { + height: 3.5rem; + margin-left: 1rem; +} + nav { clear: both } diff --git a/i2p2www/templatevars.py b/i2p2www/templatevars.py index 03c2b7a0..a201bdc7 100644 --- a/i2p2www/templatevars.py +++ b/i2p2www/templatevars.py @@ -184,9 +184,9 @@ def utility_processor(): # Shorthand for getting the logo for the current theme def get_logo_for_theme(): - logo = 'styles/' + g.theme + '/images/i2plogo.png' + logo = 'styles/' + g.theme + '/images/i2plogo.svg' if not os.path.isfile(safe_join(STATIC_DIR, logo)): - logo = 'images/i2plogo.png' + logo = 'images/i2plogo.svg' return logo def get_current_version(string=None, ver=None): diff --git a/runserver.py b/runserver.py index 2d1a4c9f..692f776a 100755 --- a/runserver.py +++ b/runserver.py @@ -2,4 +2,4 @@ from i2p2www import app if __name__ == '__main__': - app.run(host='127.0.0.1', port=5000, debug=False) + app.run(host='0.0.0.0', port=5000, debug=False)