microblog/app/templates/base.html

34 lines
935 B
HTML
Raw Normal View History

2017-09-05 06:28:11 +00:00
<!doctype html>
<html>
<head>
{% if title %}
<title>{{ title }} - Microblog</title>
{% else %}
<title>Welcome to Microblog</title>
{% endif %}
</head>
<body>
2017-09-05 07:04:56 +00:00
<div>
Microblog:
<a href="{{ url_for('index') }}">Home</a>
2017-09-13 06:31:39 +00:00
{% if current_user.is_anonymous %}
2017-09-05 07:04:56 +00:00
<a href="{{ url_for('login') }}">Login</a>
2017-09-13 06:31:39 +00:00
{% else %}
<a href="{{ url_for('user', username=current_user.username) }}">Profile</a>
2017-09-13 06:31:39 +00:00
<a href="{{ url_for('logout') }}">Logout</a>
{% endif %}
2017-09-05 07:04:56 +00:00
</div>
2017-09-05 06:28:11 +00:00
<hr>
2017-09-05 07:04:56 +00:00
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul>
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
2017-09-05 06:28:11 +00:00
{% block content %}{% endblock %}
</body>
</html>