53 lines
1.5 KiB
HTML
53 lines
1.5 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/navbar.css') }}" rel="stylesheet">
|
|
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet">
|
|
<link href="{{ url_for('static', filename='css/range.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 %}
|
|
{% include "main/footer_simple.html" %}
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|
|
|