2024-04-03 22:35:43 -04:00
|
|
|
@extends('templates.base')
|
2022-05-23 21:01:33 -04:00
|
|
|
|
|
|
|
@php
|
|
|
|
$current_page = preg_match('/\/settings$/', Request::url()) ? 'settings' : preg_replace([ '/https?:\/\/[^\/]*\/dashboard\/[^\/]*\//', '/\/.*/' ], [ '', '' ], Request::url());
|
|
|
|
@endphp
|
2016-01-26 23:20:08 -05:00
|
|
|
|
|
|
|
@section('page-includes')
|
2020-04-24 22:09:23 -04:00
|
|
|
<script src="/js/lib-dashboard.js?version={{ Version::get() }}"></script>
|
|
|
|
<script src="/js/dashboard.js?version={{ Version::get() }}"></script>
|
|
|
|
<link rel="stylesheet" href="/css/lib-dashboard.css?version={{ Version::get() }}" />
|
|
|
|
<link rel="stylesheet" href="/css/dashboard.css?version={{ Version::get() }}" />
|
2016-01-26 23:20:08 -05:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('page-top')
|
2018-04-25 23:27:45 -04:00
|
|
|
<div class="dashboard-background"></div>
|
2018-04-24 20:38:04 -04:00
|
|
|
@include('dashboard.sections.nav')
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('page-bottom')
|
|
|
|
@include('dashboard.sections.footer')
|
2016-01-26 23:20:08 -05:00
|
|
|
@endsection
|