mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-02-20 20:55:34 +00:00
(front end prep for Purchasing Tickets module)
This commit is contained in:
22
resources/views/layouts/master.blade.php
Normal file
22
resources/views/layouts/master.blade.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>@yield('title', 'TicketBeast')</title>
|
||||
|
||||
<link rel="stylesheet" href="{{ elixir('css/app.css') }}">
|
||||
@include('scripts.app')
|
||||
</head>
|
||||
<body class="bg-dark">
|
||||
<div id="app">
|
||||
@yield('body')
|
||||
</div>
|
||||
|
||||
@stack('beforeScripts')
|
||||
<script src="{{ elixir('js/app.js') }}"></script>
|
||||
@stack('afterScripts')
|
||||
{{ svg_spritesheet() }}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user