@@ -54,7 +54,7 @@
Your Last Report
- @include('layouts.default.pireps.pirep_card', ['pirep' => $last_pirep])
+ @include("layouts.${SKIN_NAME}.pireps.pirep_card", ['pirep' => $last_pirep])
@endif
{{ Widget::latestNews(['count' => 1]) }}
diff --git a/resources/views/layouts/default/datatables_css.blade.php b/resources/views/layouts/default/datatables_css.blade.php
deleted file mode 100644
index 9dffbf77..00000000
--- a/resources/views/layouts/default/datatables_css.blade.php
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/resources/views/layouts/default/datatables_js.blade.php b/resources/views/layouts/default/datatables_js.blade.php
deleted file mode 100644
index 82b3220a..00000000
--- a/resources/views/layouts/default/datatables_js.blade.php
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/resources/views/layouts/default/errors/401.blade.php b/resources/views/layouts/default/errors/401.blade.php
index b20ad0af..32c54cc2 100644
--- a/resources/views/layouts/default/errors/401.blade.php
+++ b/resources/views/layouts/default/errors/401.blade.php
@@ -1,8 +1,12 @@
-@extends('layouts.default.app')
+@extends("layouts.${SKIN_NAME}.app")
@section('title', 'not authorized')
+
@section('content')
-
Unauthorized
-
Well, this is embarrassing, you are not authorized to access or perform this function. Click here to go back to the home page.
+
Unauthorized
+
+ Well, this is embarrassing, you are not authorized to access or perform this function.
+ Click here to go back to the home page.
+
@endsection
diff --git a/resources/views/layouts/default/errors/404.blade.php b/resources/views/layouts/default/errors/404.blade.php
index 0448d042..79896f31 100644
--- a/resources/views/layouts/default/errors/404.blade.php
+++ b/resources/views/layouts/default/errors/404.blade.php
@@ -1,11 +1,13 @@
-@extends('layouts.default.app')
+@extends("layouts.${SKIN_NAME}.app")
@section('title', 'not found')
+
@section('content')
-
Page Not Found
-
Well, this is embarrassing, the page you requested does not exist. Click here to go back to the home page.
-
-{{ $exception->getMessage() }}
-
+
Page Not Found
+
+ Well, this is embarrassing, the page you requested does not exist.
+ Click here to go back to the home page.
+ {{ $exception->getMessage() }}
+
@endsection
diff --git a/resources/views/layouts/default/flights/index.blade.php b/resources/views/layouts/default/flights/index.blade.php
index a3ee2f7e..7485ae98 100644
--- a/resources/views/layouts/default/flights/index.blade.php
+++ b/resources/views/layouts/default/flights/index.blade.php
@@ -1,23 +1,24 @@
-@extends('layouts.default.app')
-
+@extends("layouts.${SKIN_NAME}.app")
@section('title', 'flights')
+
@section('content')
@include('flash::message')
flights
- @include('layouts.default.flights.table')
+ @include("layouts.${SKIN_NAME}.flights.table")
- @include('layouts.default.flights.search')
+ @include("layouts.${SKIN_NAME}.flights.search")
- {{ $flights->links('layouts.default.pagination.default') }}
+ {{ $flights->links("layouts.${SKIN_NAME}.pagination.default") }}
@endsection
+
@section('scripts')