summaryrefslogtreecommitdiff
path: root/resources/views/template.blade.php
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/template.blade.php')
-rw-r--r--resources/views/template.blade.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/resources/views/template.blade.php b/resources/views/template.blade.php
new file mode 100644
index 0000000..e620f79
--- /dev/null
+++ b/resources/views/template.blade.php
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="csrf-token" content="{{ csrf_token() }}">
+ <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>
+ <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>