2018-05-27 01:20:36 +01:00
|
|
|
@extends('templates/wrapper')
|
|
|
|
|
2018-06-03 17:31:43 +01:00
|
|
|
{{--
|
|
|
|
=======
|
|
|
|
@section('above-container')
|
|
|
|
<header class="bg-blue text-white text-xl rounded-b fixed pin-t w-full z-40 shadow-md">
|
|
|
|
<div class="container h-16 mx-auto flex">
|
|
|
|
<img class="h-12 mt-2 mr-3" src="/assets/img/pterodactyl-flat.svg">
|
|
|
|
<div class="py-6">PTERODACTYL</div>
|
|
|
|
<div class="flex-grow"></div>
|
|
|
|
<nav class="nav text-lg">
|
|
|
|
<router-link to="/"><font-awesome-icon class="mr-2" fixed-with icon="server"></font-awesome-icon>Servers</router-link>
|
|
|
|
<a href="#"><font-awesome-icon class="mr-2" fixed-with icon="cogs"></font-awesome-icon>Admin</a>
|
|
|
|
<a href="#"><font-awesome-icon class="mr-2" fixed-with icon="user"></font-awesome-icon>schrej</a>
|
|
|
|
<a href="/auth/logout"><font-awesome-icon fixed-with icon="sign-out-alt"></font-awesome-icon></a>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div class="h-16 mb-6"></div>
|
|
|
|
{{--<div class="nav">
|
|
|
|
<div class="logo">
|
|
|
|
Pterodactyl
|
|
|
|
</div>
|
|
|
|
<div class="menu">
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<router-link to="/">
|
|
|
|
<span>Your Servers</span>
|
|
|
|
</router-link>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="#">
|
|
|
|
<span>Admin</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="#">
|
|
|
|
<span>dane</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ route('auth.logout') }}">
|
|
|
|
<span>Logout</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
--}}
|
|
|
|
|
2018-05-27 01:20:36 +01:00
|
|
|
@section('container')
|
2018-05-27 07:17:02 +01:00
|
|
|
<router-view></router-view>
|
2018-05-27 23:37:03 +01:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('below-container')
|
|
|
|
<div class="flex-grow"></div>
|
2018-06-03 07:15:10 +01:00
|
|
|
<div class="w-full m-auto mt-0 container">
|
2018-06-17 02:04:48 +01:00
|
|
|
<p class="text-center sm:text-right text-grey-dark text-xs">
|
2018-05-27 01:20:36 +01:00
|
|
|
{!! trans('strings.copyright', ['year' => date('Y')]) !!}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
@endsection
|