]> BookStack Code Mirror - bookstack/blob - resources/views/attachments/list.blade.php
Add base64 image support
[bookstack] / resources / views / attachments / list.blade.php
1 @foreach($attachments as $attachment)
2     <div class="attachment icon-list">
3         <a class="icon-list-item py-xs" href="{{ $attachment->getUrl() }}" @if($attachment->external) target="_blank" @endif>
4             <span class="icon">@icon($attachment->external ? 'export' : 'file')</span>
5             <span>{{ $attachment->name }}</span>
6         </a>
7     </div>
8 @endforeach