implemented basic ui
This commit is contained in:
14
app/templates/layouts/bootstrap.html
Normal file
14
app/templates/layouts/bootstrap.html
Normal file
@@ -0,0 +1,14 @@
|
||||
{% extends 'layouts/base.html' %}
|
||||
|
||||
{% block styles %}
|
||||
{{ super() }}
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', path='assets/css/bootstrap.min.css') }}">
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', path='assets/css/bootstrap-icons.min.css') }}">
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', path='assets/css/dashboard.css') }}">
|
||||
|
||||
<script src="{{ url_for('static', path='assets/js/popper.min.js') }}"></script>
|
||||
<script src="{{ url_for('static', path='assets/js/bootstrap.min.js') }}"></script>
|
||||
{% endblock %}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user