summaryrefslogtreecommitdiff
path: root/resources/views/template.blade.php
blob: 4305656fee2ddd194cd060117fe9d62c174ce5bb (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
38
<!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>
</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>