mirror of
https://github.com/axeloz/filesharing.git
synced 2025-05-06 18:13:55 +02:00
19 lines
525 B
PHP
19 lines
525 B
PHP
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ config('app.name') }}</title>
|
|
<link rel="stylesheet" href="{{ mix('/css/app.css') }}">
|
|
<script src="{{ mix('/js/manifest.js') }}" type="text/javascript"></script>
|
|
<script src="{{ mix('/js/vendor.js') }}" type="text/javascript"></script>
|
|
<script src="{{ mix('/js/app.js') }}" type="text/javascript"></script>
|
|
</head>
|
|
|
|
<body class="main" id="@yield('page')">
|
|
|
|
@include('header')
|
|
|
|
<div id="content">@yield('content')</div>
|
|
|
|
@include('footer')
|
|
</body>
|
|
</html>
|