feat: added most of the stylings
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-01-12 15:00:12 +00:00
parent e8e5aaf552
commit c752dac624
28 changed files with 329 additions and 78 deletions

View File

@ -5,9 +5,11 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% if request.app.state.theme == "default" %}
<link href="{{ url_for('static', path='/default.css') }}" rel="stylesheet">
<link href="{{ url_for('static', path='css/default.css') }}" rel="stylesheet">
{% elif request.app.state.theme == "lumbung" %}
<link href="{{ url_for('static', path='/lumbung.css') }}" rel="stylesheet">
<link href="{{ url_for('static', path='css/lumbung.css') }}" rel="stylesheet">
<link href="{{ url_for('static', path='css/bulma.css') }}" rel="stylesheet">
<script src="{{ url_for('static', path='js/navbar_hamburger_menu.js') }}"></script>
{% endif %}
<title>{% block title %}{% endblock %}</title>
{% endblock %}