Skip to content

Commit

Permalink
{{}}
Browse files Browse the repository at this point in the history
  • Loading branch information
sdebacker committed Jan 5, 2021
1 parent ea3a1d4 commit ae1d10f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/resources/views/public/_images.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
@foreach ($model->images as $image)
<li class="image-list-item">
<a class="image-list-item-link"
href="{!! $image->present()->image(1200, 1200, ['resize']) !!}"
href="{{ $image->present()->image(1200, 1200, ['resize']) }}"
data-caption="{{ $image->alt_attribute }}"
data-fancybox="{{ $model->slug ? : 'group' }}"
data-options='{ "buttons": ["close"], "infobar": false }'
>
<img class="image-list-item-image" src="{!! $image->present()->image(370, 370) !!}" width="{{ $image->width }}" height="{{ $image->height }}" alt="{{ $image->alt_attribute }}">
<img class="image-list-item-image" src="{{ $image->present()->image(370, 370) }}" width="{{ $image->width }}" height="{{ $image->height }}" alt="{{ $image->alt_attribute }}">
</a>
</li>
@endforeach
Expand Down

0 comments on commit ae1d10f

Please sign in to comment.