prolefeeder/templates/base.html

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