master
parent
da9bfa2df8
commit
acdc520937
|
@ -105,7 +105,7 @@
|
|||
<br>
|
||||
Verfügbarkeit: <a href="">2.93</a>
|
||||
<br>
|
||||
Preis: <i>free</i>
|
||||
Einzelpreis: <i>{!!$content->data_fields['einzelpreis']!!}</i>
|
||||
|
||||
<a class="btn btn-primary d-block mt-4 btn-lg" data-bs-toggle="modal" data-bs-target="#exampleModal">
|
||||
|
||||
|
@ -153,9 +153,7 @@
|
|||
<img src="{{ $content->user->gravatar() }}" width="20px" title="{{ $content->user->name }}" class="border rounded img-fluid shadow-sm" alt="Logo {{ $content->user->name }} ">
|
||||
{{ $content->user->name }}
|
||||
</a>
|
||||
<p>
|
||||
Public Showcase of Lumino Themes. You can browse, compare the templates and install them into your own Lumino Installation.
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
|
|
@ -45,44 +45,6 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="row">
|
||||
@foreach($contents as $indexContent => $content)
|
||||
<div class="col-12 col-md-4 col-4 mb-5">
|
||||
<a href="{{ route_content($content) }}" class="text-decoration-none text-dark">
|
||||
<div class="card shadow-lg">
|
||||
|
||||
@if ($content->image)
|
||||
<img class="rounded-top img-fluid" src="{{ asset('uploads/' . $content->image) }}" loading="lazy">
|
||||
@else
|
||||
<img class="rounded-top img-fluid" src="https://picsum.photos/800/400?{{rand(0,100)}}" loading="lazy">
|
||||
@endif
|
||||
|
||||
<div class="card-body">
|
||||
<h2 class="fs-4">{{$content->title}}</h2>
|
||||
<a href="{{ route('author.get', [$content->user->slug]) }}" class="text-decoration-none">
|
||||
<img src="{{ $content->user->gravatar() }}" width="20px" title="{{ $content->user->name }}" class="border rounded img-fluid shadow-sm" alt="Logo {{ $content->user->name }} ">
|
||||
{{ $content->user->name }}
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
|
||||
@if(count($premiumAuthors) > 0)
|
||||
<section>
|
||||
<div class="row carousel-row">
|
||||
|
@ -94,7 +56,7 @@
|
|||
@foreach($premiumAuthors as $premiumAuthor)
|
||||
<div class="logos slide" style="padding-bottom: 40px; text-align: center">
|
||||
<a href="{{url('/brands')}}/{{$premiumAuthor->slug}}" class="text-center" style="font-size: 13px;">
|
||||
<img src="{{url('/uploads/profile')}}/{{$premiumAuthor->image}}" loading="lazy" alt="Logo {{$premiumAuthor->name}}" class="img-fluid center-block border rounded-circle mb-2">
|
||||
<img src="{{url('/uploads/profile')}}/{{$premiumAuthor->image}}" loading="lazy" alt="Logo {{$premiumAuthor->name}}" class="img-fluid center-block border mb-2">
|
||||
</a>
|
||||
</div>
|
||||
@endforeach
|
||||
|
|
Loading…
Reference in New Issue