INITIAL COMMIT
This commit is contained in:
31
templates/base.html
Normal file
31
templates/base.html
Normal file
@ -0,0 +1,31 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user