23 lines
552 B
PHP
23 lines
552 B
PHP
<!doctype html>
|
|
<html class="no-js" lang="zxx">
|
|
|
|
<head>
|
|
@include('partials._meta')
|
|
@include('partials.client._css')
|
|
@yield('styles')
|
|
</head>
|
|
|
|
<body>
|
|
@include('partials.client._loader')
|
|
@include('partials.client._header')
|
|
@yield('app')
|
|
@include('partials.client._footer')
|
|
<div id="back-top">
|
|
<a title="Go to Top" href="#"> <i class="fas fa-level-up-alt"></i></a>
|
|
</div>
|
|
@include('partials.client._js')
|
|
@yield('scripts')
|
|
</body>
|
|
|
|
</html>
|