You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.5 KiB
46 lines
1.5 KiB
<body |
|
class="dcat-admin-body sidebar-mini layout-fixed {{ $configData['body_class']}} {{ $configData['sidebar_class'] }} |
|
{{ $configData['navbar_class'] === 'fixed-top' ? 'navbar-fixed-top' : '' }} " > |
|
|
|
<script> |
|
var Dcat = CreateDcat({!! Dcat\Admin\Admin::jsVariables() !!}); |
|
</script> |
|
|
|
{!! admin_section(Dcat\Admin\Admin::SECTION['BODY_INNER_BEFORE']) !!} |
|
|
|
<div class="wrapper"> |
|
@include('admin::partials.sidebar') |
|
|
|
@include('admin::partials.navbar') |
|
|
|
<div class="app-content content"> |
|
<div class="content-wrapper" id="{{ $pjaxContainerId }}" style="top: 0;min-height: 900px;"> |
|
@yield('app') |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<footer class="main-footer pt-1"> |
|
<p class="clearfix blue-grey lighten-2 mb-0 text-center"> |
|
<span class="text-center d-block d-md-inline-block mt-25"> |
|
技术支持 by |
|
<a target="_blank" href="https://www.yungao-tech.com/">云高科技-研发部</a> |
|
{{-- <span> · </span>--}} |
|
{{-- v{{ Dcat\Admin\Admin::VERSION }}--}} |
|
</span> |
|
|
|
<button class="btn btn-primary btn-icon scroll-top pull-right" style="position: fixed;bottom: 2%; right: 10px;display: none"> |
|
<i class="feather icon-arrow-up"></i> |
|
</button> |
|
</p> |
|
</footer> |
|
|
|
{!! admin_section(Dcat\Admin\Admin::SECTION['BODY_INNER_AFTER']) !!} |
|
|
|
{!! Dcat\Admin\Admin::asset()->jsToHtml() !!} |
|
|
|
<script>Dcat.boot();</script> |
|
|
|
</body> |
|
|
|
</html>
|
|
|