doneth.at/app/templates/_skel.html

35 lines
1.1 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">DoneTh.at</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>
{% endblock %}
</body>
</html>