prolefeeder/templates/base.html

15 lines
264 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
{% block title %}Prolefeeder{% endblock %}
{% block content %}
<div class="container">
2018-11-10 21:32:18 +01:00
{{ utils.flashed_messages() }}
2018-11-10 21:32:18 +01:00
2018-11-10 21:12:52 +01:00
{% block app_content %}
{% endblock %}
2018-11-10 21:32:18 +01:00
2018-11-10 21:12:52 +01:00
</div>
{% endblock %}