mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-26 10:13:38 +08:00
10 lines
402 B
PHP
10 lines
402 B
PHP
@if(setting('app-privacy-policy') | setting('app-terms-of-service'))
|
|
<footer>
|
|
@if(setting('app-privacy-policy'))
|
|
<a href="{{ setting('app-privacy-policy') }}">{{ trans('settings.app_privacy_policy') }}</a>
|
|
@endif
|
|
@if(setting('app-terms-of-service'))
|
|
<a href="{{ setting('app-terms-of-service') }}">{{ trans('settings.app_terms_of_service') }}</a>
|
|
@endif
|
|
</footer>
|
|
@endif |