50 lines
1.3 KiB
HTML
50 lines
1.3 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 html_attribs %} lang="en"{% 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">
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
{{ super() }}
|
|
{% 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 %}
|
|
|
|
{% block page_content %}{% endblock %}
|
|
</div>
|
|
|
|
{% block footer %}
|
|
{% include "footer.html" %}
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|
|
|