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 }} - Page</title>
|
|
{% else %}
|
|
<title>oily</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>
|
|
<h2>oily.dad</h2>
|
|
<h5>oilydada7ckiseinkbeathsefwgkvjrce743xy7x7iiybkuxh4vheead.onion</h5>
|
|
</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>
|
|
|