proxadmin/app/templates/base.html

55 lines
1.7 KiB
HTML
Raw Normal View History

2017-03-08 20:53:09 +02:00
{% extends "bootstrap/base.html" %}
2017-05-10 03:13:44 +03:00
2017-03-08 20:53:09 +02:00
{% import "bootstrap/wtf.html" as wtf %}
{% import "bootstrap/fixes.html" as fixes %}
{% import "bootstrap/utils.html" as util %}
2017-05-10 05:15:36 +03:00
{% block title %}Cloud Builder - Datapoint.bg{% endblock %}
2017-03-08 20:53:09 +02:00
2017-05-08 04:33:42 +03:00
{% block head %}
{{ super() }}
2017-05-10 03:13:44 +03:00
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}" type="image/x-icon">
<link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}" type="image/x-icon">
2017-05-08 04:33:42 +03:00
{% endblock %}
2017-03-08 20:53:09 +02:00
{% block styles %}
{{ super() }}
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet">
2018-03-16 01:14:48 +02:00
<link href="{{ url_for('static', filename='css/theme.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/navbar.css') }}" rel="stylesheet">
2018-01-11 15:19:59 +02:00
<link href="{{ url_for('static', filename='css/range.css') }}" rel="stylesheet">
2018-01-31 04:41:59 +02:00
<link href="{{ url_for('static', filename='css/no-more-tables.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/panel-transparent.css') }}" rel="stylesheet">
2017-03-08 20:53:09 +02:00
{% endblock %}
{% block scripts %}
{{ super() }}
2017-05-31 18:20:53 +03:00
{{ moment.lang("bg") }}
{{ moment.include_moment() }}
2017-03-08 20:53:09 +02:00
{% endblock %}
{% block navbar %}
{% include "nav.html" %}
{% endblock %}
{% block content %}
2017-05-10 05:15:36 +03:00
{% block outside_container %}{% endblock %}
2018-03-25 01:31:00 +02:00
<div class="custom-container">
2017-03-08 20:53:09 +02:00
{% for message in get_flashed_messages() %}
<div class="alert alert-warning">
<button type="button" class="close" data-dismiss="alert">x</button>
{{ message }}
</div>
{% endfor %}
2017-06-11 06:26:10 +03:00
<div class="container-fluid">
2017-03-08 20:53:09 +02:00
{% block page_content %}{% endblock %}
2017-06-11 06:26:10 +03:00
</div>
2017-05-10 05:15:36 +03:00
</div>
2017-03-08 20:53:09 +02:00
{% block footer %}
{% endblock %}
2017-05-11 06:08:38 +03:00
{% endblock %}