fix imprint

This commit is contained in:
1day2die 2023-01-11 16:51:18 +01:00
parent b69cbcfe65
commit c2d50c3b33
5 changed files with 17 additions and 17 deletions

View file

@ -125,13 +125,13 @@
{{-- imprint and privacy policy --}}
<div class="fixed-bottom ">
<div class="container text-center">
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT') == "true")
<a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
@endif
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY') == "true")
<a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
@endif
@if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_TOS') == "true")
| <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
@endif
</div>

View file

@ -70,13 +70,13 @@
{{-- imprint and privacy policy --}}
<div class="fixed-bottom ">
<div class="container text-center">
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT') == "true")
<a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
@endif
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY') == "true")
<a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
@endif
@if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_TOS') == "true")
| <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
@endif
</div>

View file

@ -81,13 +81,13 @@
{{-- imprint and privacy policy --}}
<div class="fixed-bottom ">
<div class="container text-center">
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT') == "true")
<a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
@endif
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY') == "true")
<a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
@endif
@if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_TOS') == "true")
| <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
@endif
</div>

View file

@ -179,13 +179,13 @@
{{-- imprint and privacy policy --}}
<div class="fixed-bottom ">
<div class="container text-center">
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT') == "true")
<a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
@endif
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY') == "true")
<a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
@endif
@if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_TOS') == "true")
| <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
@endif
</div>

View file

@ -428,15 +428,15 @@
{{-- Show imprint and privacy link --}}
<div class="float-right d-none d-sm-inline-block">
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT') == "true")
<a target="_blank" href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
@endif
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY') == "true")
<a target="_blank" href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
@endif
@if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
| <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
@endif
@if (config('SETTINGS::SYSTEM:SHOW_TOS') == "true")
| <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
@endif
</div>
</footer>