You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>{% block title %}Streamaster Finder{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<header class="topbar">
|
|
<nav class="nav">
|
|
<a class="brand" href="{{ url_for('web.dashboard') }}">📺 Streamaster Finder</a>
|
|
<div class="links">
|
|
<a href="{{ url_for('web.dashboard') }}">Dashboard</a>
|
|
<a href="{{ url_for('web.users') }}">Users</a>
|
|
<a href="{{ url_for('web.recent') }}">Recent</a>
|
|
<a href="{{ url_for('web.favorites_page') }}">Favorites</a>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="container">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer class="footer">
|
|
<div>© <span id="yr"></span> Streamaster</div>
|
|
<script>document.getElementById('yr').textContent = new Date().getFullYear();</script>
|
|
</footer>
|
|
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
|
|
</html> |