themes-getlumino/content/index.blade.php

85 lines
3.1 KiB
PHP
Raw Normal View History

2023-12-22 14:59:21 +00:00
@inject('type', 'Type')
2022-01-01 17:59:24 +00:00
@extends('template.'.config('settings.template').'.content.master')
@section('content')
2023-12-22 14:59:21 +00:00
@php($themes = $type->get("Themes"))
2022-01-01 17:59:24 +00:00
2023-05-07 18:59:35 +00:00
<main class="portfolio-page style-1">
<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">
2023-05-07 19:13:18 +00:00
<h2 class="mb-20">Themes for the <span> Lumino CMS </span> </h2>
2023-05-07 18:59:35 +00:00
<p>We have an experienced team of production and inspection personnel to ensure quality.</p>
2022-01-01 17:59:24 +00:00
</div>
2023-05-07 18:59:35 +00:00
<section class="portfolio style-1">
<div class="content">
<div class="row mix-container">
2023-12-22 14:59:21 +00:00
@foreach($themes->contents as $content)
2023-12-22 17:01:21 +00:00
<div class="col-lg-4">
<a href="{{ $content->path }}">
2023-12-22 20:45:53 +00:00
<div class="portfolio-card mb-50" style="background-color: rgba(235,218,240,0.38);">
2023-12-22 17:01:21 +00:00
<div class="img">
2023-12-22 20:45:53 +00:00
<img src="{{$content->image}}" class="rounded-top" alt="">
2023-05-07 18:59:35 +00:00
</div>
2023-12-22 17:01:21 +00:00
<div class="info">
<h5 class="mb-2" style="color: #6c23d7">
{{$content->title}}
</h5>
<img src="{{ $content->user->image }}" width="20" height="20" class="rounded-circle border img-fluid me-2">{{ $content->user->name }}
<div class="text">
{{$content->short_description}}
2023-12-22 20:45:53 +00:00
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores consequatur, culpa cumque deleniti eius eum fugiat minus nam natus nesciunt optio perferendis quasi quidem reiciendis repellendus repudiandae, similique tenetur vitae.
2023-12-22 17:01:21 +00:00
</div>
2023-05-07 18:59:35 +00:00
</div>
</div>
2023-12-22 17:01:21 +00:00
</a>
2023-05-07 18:59:35 +00:00
</div>
@endforeach
2022-01-01 17:59:24 +00:00
2022-01-28 19:31:31 +00:00
</div>
2023-05-07 18:59:35 +00:00
</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">
2023-05-09 07:51:23 +00:00
<h2 class="mb-20"> Access your business potentials today & and start developing <span> Lumino CMS </span> Themes</h2>
2023-05-07 18:59:35 +00:00
</div>
<div class="butns mt-70">
2023-05-09 07:51:23 +00:00
<a href="{{url('/create-theme')}}" class="btn rounded-pill hover-blue4 fw-bold border-blue4" target="_blank">
<small> Create a Theme </small>
2023-05-07 18:59:35 +00:00
</a>
2023-05-09 07:51:23 +00:00
<a href="{{url('/publish')}}" class="btn rounded-pill bg-blue4 fw-bold text-white me-4" target="_blank">
<small> Publish Theme </small>
2023-05-07 18:59:35 +00:00
</a>
2023-05-09 07:51:23 +00:00
2023-05-07 18:59:35 +00:00
</div>
2022-01-28 19:31:31 +00:00
</div>
</div>
</div>
2023-05-07 18:59:35 +00:00
</div>
2023-05-07 19:40:50 +00:00
<img src="{{ asset('template/images/contact_globe.svg')}}" alt="" class="contact_globe">
2023-05-07 18:59:35 +00:00
</section>
2022-01-01 17:59:24 +00:00
2023-05-07 18:59:35 +00:00
</main>
2022-01-01 17:59:24 +00:00
</div>
@stop