diff --git a/app/views/index.blade.php b/app/views/index.blade.php index 36fa14ab..38b8cbcb 100644 --- a/app/views/index.blade.php +++ b/app/views/index.blade.php @@ -12,15 +12,15 @@ @endif - @include('imports.components') + @include('partials.components') @if(Setting::get('display_graphs')) - @include('imports.graphs') + @include('partials.graphs') @endif @for($i=0; $i <= 7; $i++) - @include('imports.incident', array('i', $i)) + @include('partials.incident', array('i', $i)) @endfor - @include('imports.support-link') + @include('partials.support-link') @stop diff --git a/app/views/imports/components.blade.php b/app/views/partials/components.blade.php similarity index 100% rename from app/views/imports/components.blade.php rename to app/views/partials/components.blade.php diff --git a/app/views/imports/graphs.blade.php b/app/views/partials/graphs.blade.php similarity index 100% rename from app/views/imports/graphs.blade.php rename to app/views/partials/graphs.blade.php diff --git a/app/views/imports/incident.blade.php b/app/views/partials/incident.blade.php similarity index 100% rename from app/views/imports/incident.blade.php rename to app/views/partials/incident.blade.php diff --git a/app/views/imports/support-link.blade.php b/app/views/partials/support-link.blade.php similarity index 100% rename from app/views/imports/support-link.blade.php rename to app/views/partials/support-link.blade.php