Merge branch 'footer-links' of git://github.com/james-geiger/BookStack into james-geiger-footer-links

This commit is contained in:
Dan Brown
2021-01-30 22:03:16 +00:00
8 changed files with 58 additions and 1 deletions

View File

@ -0,0 +1,10 @@
@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