proxadmin/app/templates/base.html
2018-03-16 01:14:48 +02:00

55 lines
1.7 KiB
HTML

{% extends "bootstrap/base.html" %}
{% import "bootstrap/wtf.html" as wtf %}
{% import "bootstrap/fixes.html" as fixes %}
{% import "bootstrap/utils.html" as util %}
{% block title %}Cloud Builder - Datapoint.bg{% endblock %}
{% block head %}
{{ super() }}
<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">
{% endblock %}
{% block styles %}
{{ super() }}
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/theme.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/navbar.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/range.css') }}" rel="stylesheet">
<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">
{% endblock %}
{% block scripts %}
{{ super() }}
{{ moment.lang("bg") }}
{{ moment.include_moment() }}
{% endblock %}
{% block navbar %}
{% include "nav.html" %}
{% endblock %}
{% block content %}
{% block outside_container %}{% endblock %}
<div class="container">
{% for message in get_flashed_messages() %}
<div class="alert alert-warning">
<button type="button" class="close" data-dismiss="alert">x</button>
{{ message }}
</div>
{% endfor %}
<div class="container-fluid">
{% block page_content %}{% endblock %}
</div>
</div>
{% block footer %}
{% endblock %}
{% endblock %}