27 lines
814 B
HTML
27 lines
814 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}MyWhoosh Garmin Sync{% endblock %}</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<span class="brand">MyWhoosh → Garmin Sync</span>
|
|
<nav>
|
|
{% if request.session.get('admin_authenticated') %}
|
|
<a href="/">Dashboard</a>
|
|
<a href="/system">System</a>
|
|
{% endif %}
|
|
{% if request.session.get('self_service_user_id') %}
|
|
<a href="/account">My Account</a>
|
|
{% endif %}
|
|
</nav>
|
|
</header>
|
|
<main class="container">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|