Move dashboard partials into the dashboard directory

This commit is contained in:
James Brooks
2015-08-13 22:34:26 +01:00
parent bee4055228
commit 3b487ea2ec
35 changed files with 40 additions and 40 deletions

View File

@@ -1,6 +1,6 @@
<!DOCTYPE html>
<html>
@include('partials.dashboard.head')
@include('dashboard.partials.head')
<body class="dashboard @yield('bodyClass')">
<div class="content">

View File

@@ -1,10 +1,10 @@
<!DOCTYPE html>
<html>
@include('partials.dashboard.head')
@include('dashboard.partials.head')
<body class="dashboard">
<div class="wrapper">
@include('partials.dashboard.sidebar')
@include('dashboard.partials.sidebar')
<div class="page-content">
@yield('content')
</div>