prolefeeder/templates/base.html

26 lines
571 B
HTML
Raw Normal View History

2018-11-10 21:12:52 +01:00
{% extends "bootstrap/base.html" %}
{% import "bootstrap/utils.html" as utils %}
2018-11-10 21:12:52 +01:00
2018-11-13 15:19:05 +01:00
{% block head %}
{{ super() }}
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
{% endblock %}
2018-11-10 21:12:52 +01:00
{% block title %}Prolefeeder{% endblock %}
{% block content %}
2018-11-12 14:54:21 +01:00
<div class="container">
2018-11-10 21:32:18 +01:00
2018-11-12 20:36:24 +01:00
<div class="row">
<div class="page-header col">
{% block page_header %}{% endblock %}
</div>
</div>
2018-11-12 23:20:52 +01:00
</div>
2018-11-12 20:36:24 +01:00
2018-11-12 23:20:52 +01:00
{{ utils.flashed_messages() }}
2018-11-10 21:32:18 +01:00
2018-11-12 23:20:52 +01:00
<div class="container">
2018-11-12 20:37:17 +01:00
{% block app_content %}{% endblock %}
2018-11-12 14:54:21 +01:00
</div>
2018-11-10 21:12:52 +01:00
{% endblock %}