sifangpay/resources/views/web/layouts/pay.blade.php

58 lines
1.7 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/common.css">
<link rel="stylesheet" href="{{ $style_path }}/static/paysdk.css">
@show
@yield('add_css')
@section('font_css')
<!-- 图标 CSS-->
@show
</head>
@section('body')
<body class="">
@show
<div class="wraper">
@section('header')
@include('web.layouts.pay.header')
@show
@yield('content')
</div>
<div style="text-align:center; font-size:14px;">{{ config_cache('config.sitename') }} © {{ $_SERVER['HTTP_HOST'] }}</div>
@section('base_js')
<script src="{{ $style_path }}/static/layui/layui.js?2942cee8920fbc0631ba"></script>
<script type="text/javascript" src="{{ $style_path }}/static/paysdk.js?2942cee8920fbc0631be"></script>
@show
@yield('foot_js')
</body>
</html>