mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-18 14:03:36 +01:00
15 lines
282 B
PHP
15 lines
282 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
@include('dashboard.partials.head')
|
|
|
|
<body class="dashboard">
|
|
<div class="wrapper">
|
|
@include('dashboard.partials.sidebar')
|
|
<div class="page-content">
|
|
@yield('content')
|
|
</div>
|
|
</div>
|
|
@yield('js')
|
|
</body>
|
|
</html>
|