30 lines
1.2 KiB
HTML
30 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ session.get('csrf_token', '') }}">
|
|
<title>{% block title %}left4me{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/tokens.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/layout.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/components.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/logs.css') }}">
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<div class="site-header-inner">
|
|
<a class="brand" href="/dashboard">left4me</a>
|
|
<nav>
|
|
<a href="/dashboard">Dashboard</a>
|
|
<a href="/admin/overlays">Overlays</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
<main class="container">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
<script src="{{ url_for('static', filename='vendor/htmx.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/csrf.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/sse.js') }}"></script>
|
|
</body>
|
|
</html>
|