19 lines
819 B
PHP
19 lines
819 B
PHP
<div class="min-vh-100 d-flex">
|
|
<!-- Sider -->
|
|
<div class="col-md-6 d-none d-md-block" style="background: url('/img/bg_cms.png') center / cover no-repeat;"></div>
|
|
<!-- Content and Footer -->
|
|
<div class="col-md-6 d-flex flex-column justify-content-between">
|
|
<div class="p-4 flex-grow-1">
|
|
@if($children)
|
|
{{ $children }}
|
|
@else
|
|
@yield('content')
|
|
@endif
|
|
</div>
|
|
<footer class="text-center py-3" style="font-size: 12px;">
|
|
<div class="mx-auto px-0 py-4" style="width: 325px; border-top: 1px solid #e0e0e0; text-align: left; color: #8E8E93;">
|
|
By logging in you agree to Unioil's Terms of Service, <br>Privacy Policy and Content Policies.
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</div> |