diff options
author | RoscoeDeWah <roscoe@wah.moe> | 2025-01-16 13:42:14 +0000 |
---|---|---|
committer | RoscoeDeWah <roscoe@wah.moe> | 2025-01-16 13:42:14 +0000 |
commit | da992ff1b780bf687ba2093d36c2def943296ec5 (patch) | |
tree | 28d4c656da316becfaf8ba81b7541d03abb188ae /resources/views/components/layout-min.blade.php | |
parent | a349858a7d55e66b51b56063af5306d3a5652bb9 (diff) |
Remove unused stuff
Diffstat (limited to 'resources/views/components/layout-min.blade.php')
-rw-r--r-- | resources/views/components/layout-min.blade.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/resources/views/components/layout-min.blade.php b/resources/views/components/layout-min.blade.php new file mode 100644 index 0000000..37e6e03 --- /dev/null +++ b/resources/views/components/layout-min.blade.php @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <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="#f27405"> + <link rel="stylesheet" href="{{ asset('/css/master.css') }}"/> + <link rel="icon" type="image/png" href="{{ asset('/favicon-32x32.png') }}" sizes="32x32"/> + <link rel="icon" type="image/png" href="{{ asset('/favicon-16x16.png') }}" sizes="16x16"/> + <title>{{ $title ?? 'Unknown' }}</title> +</head> +<body> +{{ $slot }} +</body> +</html> |