22 lines
732 B
HTML
22 lines
732 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 %}SwitchBot Temps{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<a class="brand" href="/">SwitchBot Temps</a>
|
|
<nav class="nav">
|
|
<a href="/" {% if request.path == "/" %}aria-current="page"{% endif %}>Dashboard</a>
|
|
<a href="/reports" {% if request.path == "/reports" %}aria-current="page"{% endif %}>Reports</a>
|
|
</nav>
|
|
</header>
|
|
<main class="page">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|