This repository has been archived on 2025-05-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Astral-nook/resources/themes/pterodactyl/templates/base/core.blade.php
2019-02-09 17:07:11 -08:00

14 lines
389 B
PHP

@extends('templates/wrapper')
@section('container')
<router-view></router-view>
@endsection
@section('below-container')
<div class="flex-grow"></div>
<div class="w-full m-auto mt-0 mb-6 container">
<p class="text-center sm:text-right text-neutral-300 text-xs">
{!! trans('strings.copyright', ['year' => date('Y')]) !!}
</p>
</div>
@endsection