forked from sagi/seepur
28 lines
782 B
Text
28 lines
782 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
@include('partials.SEO.meta')
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.7/css/fork-awesome.min.css" integrity="sha256-gsmEoJAws/Kd3CjuOQzLie5Q3yshhvmo7YNtBG7aaEY=" crossorigin="anonymous">
|
|
<title>
|
|
@!section('page-title')
|
|
</title>
|
|
{{ style('style') }}
|
|
@!section('scripts')
|
|
</head>
|
|
<body>
|
|
|
|
@!component('components.nav.nav', isLanding = false, auth=auth)
|
|
|
|
@!section('hero')
|
|
<div class="">
|
|
@!section('content')
|
|
</div>
|
|
<div class="m-t-lg">
|
|
@include('partials.footer')
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|