mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2024-12-13 10:48:25 +01:00
ac741d42e6
Just a quick fix, the logo wasn't displaying correctly I probably should do this with a separate CSS file for all images, but I just did this quick and dirty with a style attribute
6 lines
296 B
PHP
Executable File
6 lines
296 B
PHP
Executable File
@if(file_exists(base_path("littlelink/images/avatar.png" )))
|
|
<img class="mb-5" src="{{ asset('littlelink/images/avatar.png') }}" srcset="{{ asset('littlelink/images/avatar@2x.png 2x') }}" style="width: 150px;">
|
|
@else
|
|
<img class="mb-5" src="{{ asset('littlelink/images/avatar@2x.png') }}">
|
|
@endif
|