43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='simple.css') }}">
|
|
{% if title %}
|
|
<title>{{ title }} - blogpage</title>
|
|
{% else %}
|
|
<title>Welcome to blog.</title>
|
|
{% endif %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<a {% block indexcurrent %}{% endblock %} href="{{ url_for('index') }}">home</a>
|
|
<a {% block explorecurrent %}{% endblock %} href="{{ url_for('explore') }}">explore</a>
|
|
{% if current_user.is_anonymous %}
|
|
<a {% block logincurrent %}{% endblock %} href="{{ url_for('login') }}">login</a>
|
|
{% else %}
|
|
<a {% block profilecurrent %}{% endblock %} href="{{ url_for('user', username=current_user.username) }}">profile</a>
|
|
<a href="{{ url_for('logout') }}">logout</a>
|
|
{% endif %}
|
|
|
|
</nav>
|
|
<h1>oily.dad</h1>
|
|
<h4>destroy me</h4>
|
|
</header>
|
|
<hr>
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
<ul>
|
|
{% for message in messages %}
|
|
<p class="notice">{{ message }}</p>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|
|
|