prolefeeder/templates/base.html
2018-11-11 14:33:02 +01:00

13 lines
263 B
HTML

{% extends "bootstrap/base.html" %}
{% import "bootstrap/utils.html" as utils %}
{% block title %}Prolefeeder{% endblock %}
{% block content %}
{{ utils.flashed_messages() }}
<div class="container">
{% block app_content %}{% endblock %}
</div>
{% endblock %}