54 lines
1.5 KiB
PHP
54 lines
1.5 KiB
PHP
<!DOCTYPE html>
|
|
@section('html')
|
|
<html>
|
|
@show
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
|
|
@section('title')
|
|
<title>{{ isset($title)?$title:config('website.name') }}</title>
|
|
<meta name="keywords" content="{{ isset($keyword)?$keyword:config('website.name') }}">
|
|
<meta name="description" content="{{ isset($description)?$description:config('website.name') }}">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
@show
|
|
@section('theme_css')
|
|
<link rel="stylesheet" href="{{ $style_path }}/static/m/h5ui.min.css">
|
|
<link rel="stylesheet" href="{{ $style_path }}/static/m/example.min.css">
|
|
@show
|
|
|
|
@yield('add_css')
|
|
@section('font_css')
|
|
<!-- 图标 CSS-->
|
|
|
|
@show
|
|
|
|
|
|
</head>
|
|
@section('body')
|
|
<body class="">
|
|
@show
|
|
|
|
@section('header')
|
|
@include('web.layouts.pay.mheader')
|
|
@show
|
|
@yield('content')
|
|
|
|
|
|
@section('base_js')
|
|
|
|
<script src="{{ $style_path }}/static/m/jquery.min.js"></script>
|
|
<!-- H5UI JS -->
|
|
<script src="{{ $style_path }}/static/m//h5ui.min.js"></script>
|
|
|
|
@show
|
|
|
|
@yield('foot_js')
|
|
|
|
</body>
|
|
</html>
|
|
|