2020-06-08 13:08:46 +00:00
|
|
|
<!DOCTYPE html>
|
2020-06-11 12:52:15 +00:00
|
|
|
<html lang="en">
|
2020-06-08 13:08:46 +00:00
|
|
|
<head>
|
2020-06-09 06:38:05 +00:00
|
|
|
<title>@yield("title")</title>
|
2020-06-11 12:52:15 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
2020-06-15 06:56:21 +00:00
|
|
|
<link type="text/css" rel="stylesheet" href="{{ mix("/css/webapp.css") }}">
|
2020-06-08 13:08:46 +00:00
|
|
|
</head>
|
2020-06-15 06:56:21 +00:00
|
|
|
<body style="background-color: #00788a;">
|
2020-06-08 13:08:46 +00:00
|
|
|
@yield("content")
|
|
|
|
|
|
|
|
<script src="{{ mix("/js/app.js") }}"></script>
|
2020-06-11 12:52:15 +00:00
|
|
|
@yield("scripts")
|
2020-06-08 13:08:46 +00:00
|
|
|
</body>
|
|
|
|
</html>
|