Browse code

box and lines

rcraig12 authored on 11/11/2018 23:08:51
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,14 @@
1
+<!doctype html>
2
+<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
3
+    <head>
4
+        <meta charset="utf-8">
5
+        <meta name="viewport" content="width=device-width, initial-scale=1">
6
+        <meta name="csrf-token" content="{{ csrf_token() }}">
7
+        <title>@yield('title')</title>
8
+        <link rel="stylesheet" href="{{asset('css/editor.css')}}">
9
+    </head>
10
+    <body>
11
+    <div id="app"></div>
12
+    <script src="{{asset('/js/editor.js')}}"></script>
13
+    </body>
14
+</html>