You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/resources/views/layouts/partial/footer.blade.php

21 lines
1.1 KiB
PHTML

@if(config('instance.restricted.enabled') == false)
<footer>
7 years ago
<div class="container py-5">
4 years ago
<p class="text-center text-uppercase font-weight-bold small text-justify">
<a href="{{route('site.about')}}" class="text-dark p-2">{{__('site.about')}}</a>
<a href="{{route('site.help')}}" class="text-dark p-2">{{__('site.help')}}</a>
<a href="{{route('site.terms')}}" class="text-dark p-2">{{__('site.terms')}}</a>
<a href="{{route('site.privacy')}}" class="text-dark p-2">{{__('site.privacy')}}</a>
<a href="{{route('site.language')}}" class="text-dark p-2">{{__('site.language')}}</a>
</p>
<p class="text-center text-muted small mb-0">
<span class="text-muted">© {{date('Y')}} {{config('pixelfed.domain.app')}}</span>
<span class="mx-2">·</span>
<a href="https://pixelfed.org" class="text-muted font-weight-bold" rel="noopener">Powered by Pixelfed</a>
<span class="mx-2">·</span>
<span class="text-muted">v{{config('pixelfed.version')}}</span>
7 years ago
</p>
</div>
</footer>
@endif