phpvms/resources/views/layouts/default/app.blade.php

100 lines
3.9 KiB
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<!DOCTYPE html>
2017-07-28 20:13:52 +08:00
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport'/>
2018-03-13 00:00:12 +08:00
2018-03-29 03:01:38 +08:00
<title>@yield('title') - {{ config('app.name') }}</title>
{{-- Start of required lines block. DON'T REMOVE THESE LINES! They're required or might break things --}}
2018-03-13 00:00:12 +08:00
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="api-key" content="{{ Auth::check() ? Auth::user()->api_key: '' }}">
{{-- End the required lines block --}}
2018-03-29 03:01:38 +08:00
<link rel="shortcut icon" type="image/png" href="{{ public_asset('/assets/img/favicon.png') }}"/>
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet"/>
<link href="{{ public_asset('/assets/frontend/css/bootstrap.min.css') }}" rel="stylesheet"/>
<link href="{{ public_asset('/assets/frontend/css/now-ui-kit.css') }}" rel="stylesheet"/>
2018-06-22 22:26:08 +08:00
<link href="{{ public_asset('/assets/frontend/css/styles.css') }}" rel="stylesheet"/>
2018-03-29 03:01:38 +08:00
{{-- Start of the required files in the head block --}}
<link href="{{ public_asset('/assets/global/css/vendor.css') }}" rel="stylesheet"/>
2018-06-22 22:26:08 +08:00
<style type="text/css">
@yield('css')
2018-06-22 22:26:08 +08:00
</style>
<script>
2018-03-17 00:38:06 +08:00
@yield('scripts_head')
2018-06-22 22:26:08 +08:00
</script>
2018-03-29 03:01:38 +08:00
{{-- End of the required stuff in the head block --}}
2018-04-07 06:10:45 +08:00
2017-06-09 02:28:26 +08:00
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-toggleable-md" style="background: #067ec1;">
<div class="container" style="width: 85%!important;">
<div class="navbar-translate">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse"
data-target="#navigation" aria-controls="navigation-index" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
<p class="navbar-brand text-white" data-placement="bottom" target="_blank">
<a href="{{ url('/') }}">
2018-03-29 03:01:38 +08:00
<img src="{{ public_asset('/assets/img/logo_blue_bg.svg') }}" width="135px" style=""/>
</a>
</p>
</div>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
@include('nav')
2017-06-09 02:28:26 +08:00
</div>
</div>
2017-07-28 20:13:52 +08:00
</nav>
<!-- End Navbar -->
2018-05-05 02:59:47 +08:00
<div id="top_anchor" class="clearfix" style="height: 25px;"></div>
<div class="wrapper">
<div class="clear"></div>
<div class="container-fluid" style="width: 85%!important;">
{{-- These should go where you want your content to show up --}}
@include('flash.message')
@yield('content')
{{-- End the above block--}}
</div>
<div class="clearfix" style="height: 200px;"></div>
2018-01-20 07:13:59 +08:00
<footer class="footer footer-default">
<div class="container">
<div class="copyright">
2018-02-23 01:37:47 +08:00
{{--
Please keep the copyright message somewhere, as-per the LICENSE file
Thanks!!
2018-02-23 01:37:47 +08:00
--}}
2018-01-20 07:13:59 +08:00
powered by <a href="http://www.phpvms.net" target="_blank">phpvms</a>
</div>
</div>
</footer>
2017-07-28 20:13:52 +08:00
</div>
2017-06-09 02:28:26 +08:00
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
{{-- Start of the required tags block. Don't remove these or things will break!! --}}
2018-03-29 03:01:38 +08:00
<script src="{{ public_asset('/assets/global/js/vendor.js') }}"></script>
2018-03-28 03:46:32 +08:00
<script src="{{ public_asset('/assets/frontend/js/app.js') }}"></script>
{{--<script src="bower_components/sightglass/index.js"></script>
<script src="bower_components/rivets/dist/rivets.min.js"></script>--}}
@yield('scripts')
{{-- End the required tags block --}}
2017-08-17 07:18:47 +08:00
<script>
$(document).ready(function () {
2018-04-07 06:10:45 +08:00
$(".select2").select2({width: 'resolve'});
2017-08-17 07:18:47 +08:00
});
</script>
2017-06-09 03:16:50 +08:00
2017-06-09 02:28:26 +08:00
</body>
2017-06-09 03:16:50 +08:00
</html>