First commit
This commit is contained in:
20
resources/views/layouts/app.blade.php
Normal file
20
resources/views/layouts/app.blade.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ app()->getLocale() }}" class="uk-background-secondary">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>@yield("title") ─ {{ config("app.name") }}</title>
|
||||
<link rel="stylesheet" href="{{ mix('/css/app.css') }}">
|
||||
<script src="{{ mix('/js/app.js') }}" charset="utf-8"></script>
|
||||
</head>
|
||||
<body>
|
||||
@include("common.header")
|
||||
|
||||
<div id="content" class="uk-light">
|
||||
@yield("content")
|
||||
</div>
|
||||
|
||||
@include("common.footer")
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user