diff --git a/README.md b/README.md index fdbddd5..14a1275 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,9 @@ Windows ``` ./windows-start.sh ``` +# Images +![1 Default starting interface. ](images/pic1.png) + # Notes * Make sure to change the port in the start script as needed. * You can change the login route by changing the 'LOGIN_PATH' variable in the __init__.py file in the 'core' directory. diff --git a/images/pic1.png b/images/pic1.png new file mode 100644 index 0000000..a68b75f Binary files /dev/null and b/images/pic1.png differ diff --git a/src/core/templates/layout.html b/src/core/templates/layout.html index 7b7e5c7..e6a41c2 100644 --- a/src/core/templates/layout.html +++ b/src/core/templates/layout.html @@ -5,10 +5,13 @@ {% block header_meta %} - - - - + + {% if post %} + + + + + {% endif %} {% block header_meta_additional %} {% endblock header_meta_additional %} @@ -51,7 +54,16 @@ {% endblock %} -
+ {% block body_header %} + {{title}} Background Logo + {% include "body-header.html" %} + + {% block body_header_additional %} + {% endblock body_header_additional%} + {% endblock %} + + +
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} @@ -63,16 +75,6 @@ {% endif %} {% endwith %} - - {% block body_header %} - {{title}} Background Logo - {% include "body-header.html" %} - - {% block body_header_additional %} - {% endblock body_header_additional%} - {% endblock %} - -