[Flask] Aggregate your news and vote for the content you care about.
1
<html>
2
<head>
3
<metacharset="utf-8">
4
<metaname="viewport"content="width=device-width, initial-scale=1, shrink-to">
5
6
{% if title %}
7
<title>{{ title }}</title>
8
{% else %}
9
<title>Blendoit</title>
10
{% endif %}
11
</head>
12
<body>
13
{% with messages = get_flashed_messages(with_categories=true) %}
14
{% if messages %}
15
{% for message in messages %}
16
<divclass="alert">
17
{{ message }}
18
</div>
19
{% endfor %}
20
{% endif %}
21
{% endwith %}
22
23
{% block content %}{% endblock %}
24
</body>
25
</html>
26