Files
new_ine/resources/views/layouts/app.blade.php
2021-10-09 13:12:45 +08:00

30 lines
1.1 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/bootstrap.min.css') }}?{{ time() }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('assets/index/css/swiper.min.css') }}?{{ time() }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('assets/index/css/style.css') }}" rel="stylesheet" type="text/css"/>
@section('css')
@show
</head>
<body>
@include('layouts.header')
@section('content')
@show
@include('layouts.footer')
<!-- JS -->
<script type="text/javascript" src="{{ asset('assets/index/js/jquery-3.2.1.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets/index/js/bootstrap.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets/index/js/plugin.js') }}"></script>
@stack('script')
</body>
</html>