Files
new_ine/resources/views/layouts/app.blade.php
2020-09-15 14:01:28 +08:00

29 lines
1.2 KiB
PHP

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>{{ config('app.name', '') }}</title>
<link href="{{ asset('assets/index/css/base.css') }}?{{ time() }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('assets/index/css/main.css') }}?{{ time() }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('assets/index/css/jquery.slideBox.css') }}" rel="stylesheet" type="text/css"/>
</head>
<body>
@include('layouts.header')
@section('content')
@show
@include('layouts.footer')
<script type="text/javascript" src="{{ asset('assets/index/js/jquery-1.8.3.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets/index/js/jquery.slideBox.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets/index/js/nav.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets/index/js/Tabs.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets/index/js/cjango.js') }}"></script>
@stack('script')
</body>
</html>