footer.blade.php 1.2 KB

1234567891011121314151617181920212223
  1. @if(config('instance.restricted.enabled') == false)
  2. <footer>
  3. <div class="container py-5">
  4. <p class="text-center text-uppercase font-weight-bold small text-justify">
  5. <a href="{{route('site.about')}}" class="text-dark p-2">{{__('site.about')}}</a>
  6. <a href="{{route('site.help')}}" class="text-dark p-2">{{__('site.help')}}</a>
  7. <a href="{{route('site.terms')}}" class="text-dark p-2">{{__('site.terms')}}</a>
  8. <a href="{{route('site.privacy')}}" class="text-dark p-2">{{__('site.privacy')}}</a>
  9. <a href="{{route('site.language')}}" class="text-dark p-2">{{__('site.language')}}</a>
  10. @if(config_cache('instance.has_legal_notice'))
  11. <a href="/site/legal-notice" class="text-dark p-2">Legal Notice</a>
  12. @endif
  13. </p>
  14. <p class="text-center text-muted small mb-0">
  15. <span class="text-muted">© {{date('Y')}} {{config('pixelfed.domain.app')}}</span>
  16. <span class="mx-2">·</span>
  17. <a href="https://pixelfed.org" class="text-muted font-weight-bold" rel="noopener">Powered by Pixelfed</a>
  18. <span class="mx-2">·</span>
  19. <span class="text-muted">v{{config('pixelfed.version')}}</span>
  20. </p>
  21. </div>
  22. </footer>
  23. @endif