38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
{% block head %}
|
|
<title>{% block title %}{% endblock %} - DoneTh.at</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<script src="{{ url_for('static', filename='js/turbolinks/turbolinks.js') }}"></script>
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
{% block body %}
|
|
<div class="container mx-auto content">
|
|
<div class="card {% block header_width %}max-w-lg{% endblock %} mx-auto text-center ">
|
|
<h1 class="text-5xl"><a href="{{ url_for('main.index') }}">DoneTh.at</a></h1>
|
|
{% block header_user %}
|
|
{% if current_user.is_authenticated %}
|
|
<p>Hi <span class="font-mono">{{ current_user.username }}</span>!</p>
|
|
<p>
|
|
<a class="text-xs link" href="{{ url_for('auth.logout') }}">Log out.</a>
|
|
</p>
|
|
{% endif %}
|
|
{% endblock %}
|
|
</div>
|
|
{% block content %}
|
|
{% endblock %}
|
|
<div class="pt-4 mb-8 text-xs text-center">
|
|
Made with ❤️ by <a href="https://irth.pl" class="text-blue-700">Wojciech ~irth Kwolek</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
</body>
|
|
|
|
</html>
|