32 lines
909 B
HTML
32 lines
909 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ title or "Garmin Coach Clone" }}</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<a class="brand" href="/">
|
|
<span class="brand-mark"></span>
|
|
<span>Coach Clone</span>
|
|
</a>
|
|
<nav>
|
|
<a href="/">Dashboard</a>
|
|
<a href="/garmin">Garmin</a>
|
|
<a href="/search">Search</a>
|
|
<a href="/schedule">Schedule</a>
|
|
<a href="/traces">Traces</a>
|
|
<a href="/logs">Logs</a>
|
|
</nav>
|
|
<form method="post" action="/logout">
|
|
<button class="icon-button" type="submit" title="Log out">Log out</button>
|
|
</form>
|
|
</header>
|
|
<main class="shell">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|