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.

45 lines
863 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='main.css')}}">
{% if title %}
<title>Blog post - {{ title }}</title>
{% else %}
<title>Blog posts</title>
{% endif %}
</head>
<body>
{% block navbar %}
{% for post in navbaritems %}
<li><a href="{{ post.url }}"> {{ post.name }} </a></li>
{% endfor %}
{% endblock %}
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for caterogy, message in messages %}
<div>
{{ message }}
</div>
{% endfor %}
{% endif %}
{% endwith %}
{% for post in navbaritems %}
{% if title == post.name %}
<h1>{{ post.name }}</h1>
{% endif %}
{% endfor %}
<div>
{% block content %}
{% endblock %}
</div>
</body>
</html>