flo-token-explorer-historic/app/templates/base.html
2018-12-06 15:46:23 +05:30

24 lines
600 B
HTML

<html>
<head>
{% if title %}
<title>{{ title }} - Microblog</title>
{% else %}
<title>Welcome to Microblog</title>
{% endif %}
</head>
<body>
<h2>RMT explorer</h2>
<div> <a href="{{ url_for('index') }}">Home</a></div>
<hr>
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul>
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
{% block content %}{% endblock %}
</body>
</html>