25 lines
709 B
PHP
25 lines
709 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
@include('components.partials.home._meta')
|
|
@include('components.partials.home._css')
|
|
</head>
|
|
|
|
<body>
|
|
<div class="content-wrapper">
|
|
@include('components.partials.home._header')
|
|
{{ $slot }}
|
|
</div>
|
|
<!-- /.content-wrapper -->
|
|
@include('components.partials.home._footer')
|
|
<div class="progress-wrap">
|
|
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
|
|
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
|
|
</svg>
|
|
</div>
|
|
@include('components.partials.home._js')
|
|
</body>
|
|
|
|
</html>
|