Files
cachet-docker/app/views/layout/dashboard.blade.php
2014-12-28 19:45:43 -06:00

15 lines
284 B
PHP

<!DOCTYPE html>
<html>
@include('layout._head')
<body class="dashboard">
@include('partials.dashboard.nav')
<div class="wrapper">
@include('partials.dashboard.sidebar')
<div class="content">
@yield('content')
</div>
</div>
</body>
</html>