Updated UI

This commit is contained in:
maximstewart 2020-12-15 23:36:54 -06:00
parent a132e0ff85
commit e8db4d2862
3 changed files with 20 additions and 15 deletions

View File

@ -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.

BIN
images/pic1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 407 KiB

View File

@ -5,10 +5,13 @@
{% block header_meta %}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% if post %}
<meta name="author" content="{{post.meta_author}}">
<meta name="copyright" content="CC0">
<meta name="description" content="{{post.meta_description}}">
<meta name="keywords" content="{{post.meta_keywords}}">
{% endif %}
<meta name="robots" content="index,follow">
{% block header_meta_additional %}
{% endblock header_meta_additional %}
@ -51,7 +54,16 @@
</head>
{% endblock %}
<body>
<div class="container">
{% block body_header %}
<img id="bg" src="{{ url_for('static', filename='imgs/backgrounds/background.jpg')}}" alt="{{title}} Background Logo" />
{% include "body-header.html" %}
{% block body_header_additional %}
{% endblock body_header_additional%}
{% endblock %}
<div class="container bg-dark" style="height: 80vh;">
<!-- System flashed messages! -->
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
@ -63,16 +75,6 @@
{% endif %}
{% endwith %}
{% block body_header %}
<img id="bg" src="{{ url_for('static', filename='imgs/backgrounds/background.jpg')}}" alt="{{title}} Background Logo" />
{% include "body-header.html" %}
{% block body_header_additional %}
{% endblock body_header_additional%}
{% endblock %}
<div class="row">
<div id="page-alert-zone" class="col">
</div>