Get initial mockup of new server list up

This commit is contained in:
Dane Everitt 2018-05-26 17:20:36 -07:00
parent 64175ce35a
commit 9d8830a2d7
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
12 changed files with 201 additions and 64 deletions

View file

@ -1,34 +1,15 @@
<html>
<head>
<title>{{ config('app.name', 'Pterodactyl') }}</title>
@extends('templates/wrapper', [
'css' => ['body' => 'bg-grey-darkest']
])
@section('meta')
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<meta name="csrf-token" content="{{ csrf_token() }}">
@show
@section('assets')
{!! $asset->css('assets/css/bundle.css') !!}
@show
@include('layouts.scripts')
</head>
<body class="bg-grey-darkest">
<div class="container" id="pterodactyl">
<div class="w-full max-w-xs sm:max-w-sm m-auto mt-8">
<div class="text-center">
<img src="/favicons/android-chrome-512x512.png" class="max-w-xxs">
</div>
<router-view></router-view>
<p class="text-center text-grey text-xs">
{!! trans('strings.copyright', ['year' => date('Y')]) !!}
</p>
</div>
@section('container')
<div class="w-full max-w-xs sm:max-w-sm m-auto mt-8">
<div class="text-center">
<img src="/favicons/android-chrome-512x512.png" class="max-w-xxs">
</div>
@section('scripts')
{!! $asset->js('assets/scripts/bundle.js') !!}
@show
</body>
</html>
<router-view></router-view>
<p class="text-center text-grey text-xs">
{!! trans('strings.copyright', ['year' => date('Y')]) !!}
</p>
</div>
@endsection