File size: 2,772 Bytes
5d1a8d2
 
 
 
 
0c1a3e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5d1a8d2
 
 
0c1a3e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cfcea40
0c1a3e2
cfcea40
0c1a3e2
 
cfcea40
 
 
0c1a3e2
 
5d1a8d2
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>{% block title %}SQLite DBaaS{% endblock %}</title>
    
    <!-- Material Design 3 (M3) Web Components -->
    <script type="importmap">
    {
        "imports": {
            "@material/web/": "https://esm.run/@material/web/"
        }
    }
    </script>
    <script type="module">
        // Import all M3 components
        import '@material/web/all.js';
        // Import typography styles
        import {styles as typescaleStyles} from '@material/web/typography/md-typescale-styles.js';
        document.adoptedStyleSheets = [typescaleStyles.styleSheet];
    </script>
    
    <!-- Google Fonts - Roboto for Material -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
    
    <!-- Material Symbols -->
    <link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" rel="stylesheet">
    
    <!-- Custom Styles -->
    <link rel="stylesheet" href="/static/admin.css">
</head>
<body>
    <!-- Navigation Rail / Top App Bar -->
    <header class="app-header">
        <div class="header-content">
            <a href="/admin/dashboard" class="brand">
                <span class="material-symbols-outlined brand-icon">database</span>
                <span class="brand-text">SQLite DBaaS</span>
            </a>
            <nav class="nav-links">
                <a href="/admin/dashboard" class="nav-item">
                    <span class="material-symbols-outlined">dashboard</span>
                    <span>Dashboard</span>
                </a>
                <a href="/admin/query" class="nav-item">
                    <span class="material-symbols-outlined">query_stats</span>
                    <span>Query</span>
                </a>
                <a href="/admin/backups" class="nav-item">
                    <span class="material-symbols-outlined">backup</span>
                    <span>Backups</span>
                </a>
            </nav>
            <div class="header-actions">
                <a href="/docs" target="_blank" class="nav-item">
                    <span class="material-symbols-outlined">description</span>
                </a>
            </div>
        </div>
    </header>
    
    <!-- Main Content -->
    <main class="main-content">
        {% block content %}{% endblock %}
    </main>
    
    <!-- FAB for quick actions (optional) -->
    {% block fab %}{% endblock %}
</body>
</html>