2022-01-01 17:59:24 +00:00
|
|
|
@extends('template.'.config('settings.template').'.content.master')
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
2022-01-01 21:40:14 +00:00
|
|
|
<section class="rounded bg-ci" style="margin-top: 80px;">
|
2022-01-01 17:59:24 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
2022-01-28 19:31:31 +00:00
|
|
|
<h1>Lumino Theme Store</h1>
|
2022-01-01 17:59:24 +00:00
|
|
|
|
2022-01-01 19:02:11 +00:00
|
|
|
<p class="fs-4 mt-4">
|
2022-01-01 17:59:24 +00:00
|
|
|
A showcase of public Lumino Themes.
|
|
|
|
<br>
|
2022-01-01 21:40:14 +00:00
|
|
|
You can browse, compare the templates and install them into your own Lumino Installation. To develop and list your own Lumino Template <a href="https://www.areya.de/kontakt" target="_blank" class="text-decoration-none"> get in contact</a>
|
2022-01-01 17:59:24 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-01-28 19:31:31 +00:00
|
|
|
|
|
|
|
@if(count($premiumAuthors) > 0)
|
|
|
|
<section>
|
|
|
|
<div class="row carousel-row">
|
|
|
|
<div class="container">
|
|
|
|
<div class="col-sm-12">
|
|
|
|
<h2 class="mb-4">Top <strong>Lumino</strong> theme <strong>Authors</strong></h2>
|
|
|
|
</div>
|
|
|
|
<div class="row top_arbeitgeber logo-carousel slider" data-arrows="true">
|
|
|
|
@foreach($premiumAuthors as $premiumAuthor)
|
|
|
|
<div class="logos slide" style="padding-bottom: 40px; text-align: center">
|
|
|
|
<a href="{{url('/arbeitgeber')}}/{{$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">
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
2022-01-01 17:59:24 +00:00
|
|
|
<div class="row">
|
|
|
|
@foreach($contents as $indexContent => $content)
|
|
|
|
<div class="col-12 col-md-6 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">
|
2022-01-01 22:36:06 +00:00
|
|
|
<h2 class="fs-4">{{$content->title}}</h2>
|
2022-01-01 17:59:24 +00:00
|
|
|
<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>
|
2022-01-01 19:02:11 +00:00
|
|
|
<p class="mt-4">
|
|
|
|
{!! isset($content->data_fields['short_description'])?$content->data_fields['short_description']:'keine Angaben' !!}
|
|
|
|
</p>
|
2022-01-01 17:59:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
|
|
|
|
|