You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
395 B
HTML
20 lines
395 B
HTML
6 years ago
|
{% extends "bootstrap/base.html" %}
|
||
|
|
||
|
{% block title %}Prolefeeder{% endblock %}
|
||
|
{% block content %}
|
||
|
<div class="container">
|
||
6 years ago
|
|
||
|
{% with messages = get_flashed_messages() %}
|
||
|
{% if messages %}
|
||
|
{% for message in messages %}
|
||
|
<div class="alert alert-info" role="alert">{{ message }}</div>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
{% endwith %}
|
||
|
|
||
6 years ago
|
{% block app_content %}
|
||
|
{% endblock %}
|
||
6 years ago
|
|
||
6 years ago
|
</div>
|
||
|
{% endblock %}
|