Benjamin Völkl 2023-05-07 23:13:17 +02:00
parent 08847f6c0c
commit e93160e130
1 changed files with 64 additions and 45 deletions

View File

@ -2,59 +2,78 @@
@section('content')


<div class="container">

<section class="rounded">
<div class="row">
<div class="col">
<h1>Lumio Theme Store</h1>

<p class="fs-4">
A showcase of public Lumino Themes.
<br>
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/contact" class="text-decoration-none"> get in contact</a>
</p>

<main class="portfolio-page style-1">
<!-- ====== start portfolio-projects ====== -->
<section class="portfolio-projects section-padding pt-50 style-1 bg-white">
<div class="container">
<div class="section-head text-center style-4 mb-40">
<small class="title_small">New</small>
<h2 class="mb-20">Themes for the <span> Lumino CMS </span> </h2>
<p>We have an experienced team of production and inspection personnel to ensure quality.</p>
</div>
</div>
</section>

<section class="portfolio style-1">
<div class="content">
<div class="row mix-container">

@foreach($contents as $content)
<div class="col-lg-4 mix security consultation">
<div class="portfolio-card mb-50">
<div class="img">
<img src="{{$content->image}}" alt="">
</div>
<div class="info">
<h5>
<a href="{{$content->path}}"> {{$content->title}} </a>
</h5>
<a href="" class="d-block color-main mt-2"> <img src="https://picsum.photos/20/20" class="rounded-circle border img-fluid me-2">Areya Webservices GmbH</a>
<div class="text">
Trust our top minds to eliminate workflow
</div>
<div class="tags">
<a href="#">Free</a>
</div>
</div>
</div>
</div>
@endforeach

<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">
<h2 class="fs-5">{{$content->title}}</h2>
<a href="{{ route('users.show', [$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>
<p>
<br>
Public Showcase of Lumino Themes. You can browse, compare the templates and install them into your own Lumino Installation.</p>


</div>

</div>

</a>


</div>
</section>
</div>
</section>
<section class="download section-padding style-5 bg-light">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-9">
<div class="content text-center">
<div class="section-head text-center style-4">
<h2 class="mb-20"> Access your business potentials today & find opportunity for <span> bigger success </span> </h2>
</div>
<div class="butns mt-70">
<a href="page-contact-app.html" class="btn rounded-pill bg-blue4 fw-bold text-white me-4" target="_blank">
<small> Start A Project Now </small>
</a>
<a href="page-about-app.html" class="btn rounded-pill hover-blue4 fw-bold border-blue4" target="_blank">
<small> See Pricing & Plan </small>
</a>
</div>
</div>
</div>
</div>
</div>
<img src="{{ asset('template/images/contact_globe.svg')}}" alt="" class="contact_globe">
</section>
<!-- ====== end portfolio-projects ====== -->


</main>




@endforeach
</div>
</div>

@stop