proxadmin/app/templates/base.html

50 lines
1.3 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/navbar.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet">
{% 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 %}
2017-03-08 20:53:09 +02:00
<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 %}
{% block page_content %}{% endblock %}
2017-05-10 05:15:36 +03:00
</div>
2017-03-08 20:53:09 +02:00
{% block footer %}
2017-05-12 22:10:56 +03:00
{% include "footer_simple.html" %}
2017-03-08 20:53:09 +02:00
{% endblock %}
2017-05-11 06:08:38 +03:00
{% endblock %}