aboutsummaryrefslogtreecommitdiff
path: root/resources/views/includes/head.blade.php
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-06-13 23:07:20 +0100
committerFrankie B <frankieraybrown@gmail.com>2023-06-14 22:15:44 +0100
commit8e627b16712e90134919c7366dffa4993a13165a (patch)
tree63517d53c74594189cc46857bdbd06decbaac5f2 /resources/views/includes/head.blade.php
parenta464ef4c0e3ce235fb1da70dfb282449beeeac80 (diff)
Add global layout and homepage
Diffstat (limited to 'resources/views/includes/head.blade.php')
-rw-r--r--resources/views/includes/head.blade.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/resources/views/includes/head.blade.php b/resources/views/includes/head.blade.php
new file mode 100644
index 0000000..ed4f29e
--- /dev/null
+++ b/resources/views/includes/head.blade.php
@@ -0,0 +1,13 @@
+ <!-- Global -->
+ <meta charset="utf-8">
+ <meta property="og:type" content="website">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="theme-color" content="#333333">
+ <link rel="stylesheet" href="{{ URL::asset ('css/dark.css') }}"/>
+
+ <!-- Page-specific -->
+ <title>~floppydisk / @yield('title')</title>
+ <meta property="og:title" content="~floppydisk / @yield('title')">
+ <meta property="og:description" content="@yield('description')">
+ <meta property="og:image" content="/favicon.png">
+ <style>td{padding:0px;}</style>