]> BookStack Code Mirror - bookstack/blob - resources/views/common/footer.blade.php
API Docs: Add Missing Fields in Example Responses
[bookstack] / resources / views / common / footer.blade.php
1 @if(count(setting('app-footer-links', [])) > 0)
2 <footer>
3     @foreach(setting('app-footer-links', []) as $link)
4         <a href="{{ $link['url'] }}" target="_blank" rel="noopener">{{ strpos($link['label'], 'trans::') === 0 ? trans(str_replace('trans::', '', $link['label'])) : $link['label'] }}</a>
5     @endforeach
6 </footer>
7 @endif