Refresh
This commit is contained in:
1
resources/views/partials/details/image.blade.php
Executable file
1
resources/views/partials/details/image.blade.php
Executable file
@@ -0,0 +1 @@
|
||||
<img src="{{ $url }}" alt="{{ $url }}" class="w-full" />
|
||||
3
resources/views/partials/details/pdf.blade.php
Executable file
3
resources/views/partials/details/pdf.blade.php
Executable file
@@ -0,0 +1,3 @@
|
||||
<div class="w-full h-96">
|
||||
<embed src="{{ $url }}" type="application/pdf" height="100%" width="100%" />
|
||||
</div>
|
||||
3
resources/views/partials/document.blade.php
Executable file
3
resources/views/partials/document.blade.php
Executable file
@@ -0,0 +1,3 @@
|
||||
<a class="inline-document"
|
||||
target="_blank" rel="noopener noreferrer" href="{{ $document['url'] }}"
|
||||
>@if(!empty($document['favicon']))<img src="{{ $document['favicon'] }}" class="favicon" />@endif {{ $document['title'] }}</a>
|
||||
3
resources/views/partials/feed.blade.php
Executable file
3
resources/views/partials/feed.blade.php
Executable file
@@ -0,0 +1,3 @@
|
||||
<a class="inline-document"
|
||||
target="_blank" rel="noopener noreferrer" href="{{ $feed['url'] }}"
|
||||
>@if(!empty($feed['favicon']))<img src="{{ $feed['favicon'] }}" class="favicon" />@endif {{ $feed['title'] }}</a>
|
||||
8
resources/views/partials/folder.blade.php
Executable file
8
resources/views/partials/folder.blade.php
Executable file
@@ -0,0 +1,8 @@
|
||||
<div class="inline-block rounded dark:bg-gray-800 px-2 py-1">
|
||||
<div class="flex items-center space-x-1">
|
||||
<svg fill="currentColor" width="16" height="16" class="{{ $folder['iconColor'] }}">
|
||||
<use xlink:href="{{ asset('images/icons.svg') }}#{{ $folder['icon'] }}" />
|
||||
</svg>
|
||||
<span>{{ (!empty($folder['type']) && $folder['type'] !== 'folder') ? __($folder['title']) : $folder['title'] }}</span>
|
||||
</div>
|
||||
</div>
|
||||
8
resources/views/partials/group.blade.php
Executable file
8
resources/views/partials/group.blade.php
Executable file
@@ -0,0 +1,8 @@
|
||||
<div class="inline-block rounded dark:bg-gray-800 px-2 py-1">
|
||||
<div class="flex items-center space-x-1">
|
||||
<svg fill="currentColor" width="16" height="16" class="text-green-500">
|
||||
<use xlink:href="{{ asset('images/icons.svg') }}#group" />
|
||||
</svg>
|
||||
<span>{{ $group['name'] }}</span>
|
||||
</div>
|
||||
</div>
|
||||
8
resources/views/partials/user.blade.php
Executable file
8
resources/views/partials/user.blade.php
Executable file
@@ -0,0 +1,8 @@
|
||||
<a href="mailto:{{ $user['email'] }}" class="inline-block"><div class="flex items-center space-x-1"><svg
|
||||
fill="currentColor"
|
||||
width="16"
|
||||
height="16"
|
||||
class="text-green-500"
|
||||
>
|
||||
<use xlink:href="{{ asset('images/icons.svg') }}#account" />
|
||||
</svg>{{ $user['name'] }}</div></a>
|
||||
Reference in New Issue
Block a user