Dash
This commit is contained in:
parent
59c9fbc106
commit
a899e585ab
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -96,3 +96,4 @@ ENV/
|
|||
|
||||
# Ignore self config
|
||||
config.json
|
||||
.vscode/
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='const/css/bootstrap.min.css') }}">
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='const/css/fontawesome.min.css') }}">
|
||||
|
||||
{% include 'includes/boot-head.html' %}
|
||||
{% if title %}
|
||||
<title>Husstanden - {{ title }}</title>
|
||||
{% else %}
|
||||
|
@ -14,8 +10,6 @@
|
|||
</head>
|
||||
<body>
|
||||
{% block content %}{% endblock %}
|
||||
<script src="{{ url_for('static', filename='const/js/jquery-3.3.1.slim.min.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='const/js/popper.min.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='const/js/bootstrap.min.js') }}"></script>
|
||||
{% include 'includes/boot-body.html' %}
|
||||
</body>
|
||||
</html>
|
15
templates/layout/dash.html
Normal file
15
templates/layout/dash.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{% include 'includes/boot-head.html' %}
|
||||
{% if title %}
|
||||
<title>Husstanden - {{ title }}</title>
|
||||
{% else %}
|
||||
<title>Husstanden</title>
|
||||
{% endif %}
|
||||
</head>
|
||||
<body>
|
||||
{% block content %}{% endblock %}
|
||||
{% include 'includes/boot-body.html' %}
|
||||
</body>
|
||||
</html>
|
3
templates/layout/includes/boot-body.html
Normal file
3
templates/layout/includes/boot-body.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
<script src="{{ url_for('static', filename='const/js/jquery-3.3.1.slim.min.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='const/js/popper.min.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='const/js/bootstrap.min.js') }}"></script>
|
4
templates/layout/includes/boot-head.html
Normal file
4
templates/layout/includes/boot-head.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='const/css/bootstrap.min.css') }}">
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='const/css/fontawesome.min.css') }}">
|
Loading…
Reference in New Issue
Block a user