prolefeeder/templates/base.html

20 lines
495 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') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='prolefeeder.css') }}">
2018-11-13 15:19:05 +01:00
{% endblock %}
2018-11-10 21:12:52 +01:00
{% block title %}Prolefeeder{% endblock %}
{% block content %}
<div class="text-center">
{{ utils.render_messages() }}
</div>
2018-11-10 21:32:18 +01:00
{% block app_content %}{% endblock %}
2018-11-10 21:12:52 +01:00
{% endblock %}