21 lines
617 B
PHP
21 lines
617 B
PHP
<!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>
|