proxadmin/app/templates/base.html

48 lines
1.3 KiB
HTML
Raw Normal View History

2017-03-08 13:53:09 -05:00
{% extends "bootstrap/base.html" %}
2017-05-09 20:13:44 -04:00
2017-03-08 13:53:09 -05:00
{% import "bootstrap/wtf.html" as wtf %}
{% import "bootstrap/fixes.html" as fixes %}
{% import "bootstrap/utils.html" as util %}
2017-05-09 22:15:36 -04:00
{% block title %}Cloud Builder - Datapoint.bg{% endblock %}
2017-03-08 13:53:09 -05:00
2017-05-07 21:33:42 -04:00
{% block head %}
{{ super() }}
2017-05-09 20:13:44 -04: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-07 21:33:42 -04:00
{% endblock %}
2017-03-08 13:53:09 -05: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() }}
{% endblock %}
{% block navbar %}
{% include "nav.html" %}
{% endblock %}
{% block content %}
2017-05-09 22:15:36 -04:00
{% block outside_container %}{% endblock %}
2017-03-08 13:53:09 -05: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-09 22:15:36 -04:00
</div>
2017-03-08 13:53:09 -05:00
{% block footer %}
2017-05-12 15:10:56 -04:00
{% include "footer_simple.html" %}
2017-03-08 13:53:09 -05:00
{% endblock %}
2017-05-10 23:08:38 -04:00
{% endblock %}