mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 23:49:37 +00:00
c5d5b6e3c1
Extra bits were showing due to recent changes. Done a quick pass through major display views. Fixes #4594
7 lines
352 B
PHP
7 lines
352 B
PHP
@if(count(setting('app-footer-links', [])) > 0)
|
|
<footer class="print-hidden">
|
|
@foreach(setting('app-footer-links', []) as $link)
|
|
<a href="{{ $link['url'] }}" target="_blank" rel="noopener">{{ strpos($link['label'], 'trans::') === 0 ? trans(str_replace('trans::', '', $link['label'])) : $link['label'] }}</a>
|
|
@endforeach
|
|
</footer>
|
|
@endif |