Added extendable header blocks

This commit is contained in:
Maxim Stewart 2019-12-14 17:14:14 -06:00
parent 042c32a7cd
commit c40ace38b7
1 changed files with 10 additions and 2 deletions

View File

@ -5,13 +5,21 @@
{% if title %}
<title>{{title}}</title>
{% else %}
<title>Home</title>
<title>App</title>
{% endif %}
<link rel="shortcut icon" href="{{ url_for('static', filename='faveicon.png') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap/bootstrap.min.css')}}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap/bootstrap-datepicker.css')}}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css')}}">
{% block headercss %}
{% endblock %}
{% block headerscripts %}
{% endblock %}
</head>
<body>