blob: 373d5f8dccf372a8a9689af6403f258081e520e4 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TG</title>
<link rel="stylesheet" href="css/home.css">
@yield('head')
</head>
<body>
<header>
<h2>.</h2>
<section class = "status">
<p> </p>
</section>
</header>
<main>
<nav>
<a href = "/">Home</a>
<a href = "/f">Files</a>
<a href = "/l">Resources</a>
<a href = "/notes">Notes</a>
<small><a id = "buttonSettings">Settings</a></small>
<!-- login ? -->
</nav>
<center>- - -</center>
@yield('content')
<center>- - -</center>
<footer>
</footer>
</main>
</body>
<script src="https://unpkg.com/htmx.org@2.0.1"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src = "https://code.jquery.com/jquery-3.7.1.min.js"></script>
@yield('scripts')
</html>
|