atcheck/resources/views/layouts/map.blade.php

28 lines
920 B
PHP
Raw Normal View History

2019-12-07 19:49:42 +01:00
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.14.0.css">
<link rel="stylesheet" href="{{ asset('js/app.js') }}">
<script src="http://code.jquery.com/qunit/qunit-1.14.0.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="{{ asset('js/map/jquery.seat-charts.min.js') }}"></script>
2019-12-08 00:00:52 +01:00
<link rel="stylesheet" type="text/css" href="{{ asset('css/map/seatchart.css') }}">
2019-12-09 12:57:59 +01:00
<link rel="shortcut icon" href="{{ asset('img/favicon.png') }}">
2019-12-07 19:49:42 +01:00
<title> @CHECK | @yield('map_title') </title>
@yield('map_meta')
</head>
<body>
<div class="wrapper">
2019-12-08 00:00:52 +01:00
<a href="{{ route('user_classes') }}" class="checkout-button end-button"> Zakończ zapisy </a>
2019-12-07 19:49:42 +01:00
@yield('map_content')
</div>
</body>
</html>