mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-24 19:53:00 +01:00
14 lines
256 B
PHP
14 lines
256 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
@include('partials.dashboard.head')
|
|
|
|
<body class="dashboard">
|
|
<div class="wrapper">
|
|
@include('partials.dashboard.sidebar')
|
|
<div class="content">
|
|
@yield('content')
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|