aboutsummaryrefslogtreecommitdiff
path: root/resources/views/layouts
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-07-16 02:59:30 +0100
committerFrankie B <git@diskfloppy.me>2023-07-16 02:59:30 +0100
commitb0cccfac6e21f35581145ed4c10dc4520f567737 (patch)
tree33fec213a6e3790f636f3173c57da10aa2d00565 /resources/views/layouts
parentf0a7a8af7c1ef93aa25b3a770a03669b198331b8 (diff)
Move ratelimit error to new minimal layout template
Diffstat (limited to 'resources/views/layouts')
-rw-r--r--resources/views/layouts/minimal.blade.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/resources/views/layouts/minimal.blade.php b/resources/views/layouts/minimal.blade.php
new file mode 100644
index 0000000..5cef094
--- /dev/null
+++ b/resources/views/layouts/minimal.blade.php
@@ -0,0 +1,11 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+ <title>@yield('title')</title>
+ <link rel="stylesheet" href="{{ URL::asset ('css/minimal.css') }}"/>
+</head>
+
+<body>
+@yield('content')
+</body>
+</html>