blob: 09c738993bfe36ac43339141956847f6fe9975af (
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TG</title>
<meta name="csrf-token" content="{{ csrf_token() }}">
<link rel="stylesheet" href="/css/home.css">
@yield('head')
</head>
<body>
<header>
<h2>.</h2>
<section class = "status">
UNDER CONSTRUCTION; APOLOGIES FOR LACKING FUNCTIONALITY.
</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>
@vite('resources/js/app.js')
@yield('scripts')
</body>
</html>
|