mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 18:59:09 -04:00
39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<!-- CSRF Token -->
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>{{ config('app.name', 'Laravel') }}</title>
|
|
|
|
<!-- Scripts -->
|
|
<script src="{{ asset('js/app.js') }}" defer></script>
|
|
|
|
<!-- Fonts -->
|
|
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
|
|
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600" rel="stylesheet" type="text/css">
|
|
|
|
<!-- Styles -->
|
|
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
|
|
</head>
|
|
<body style="background-color: #343a40 !important">
|
|
<div id="app">
|
|
<nav class="navbar navbar-expand-md navbar-light navbar-laravel">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="{{ url('/') }}">
|
|
{{ config('squadron.fullname') }}
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="py-4" style="margin-top: 11%">
|
|
@yield('content')
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|