themes-getlumino/content/contents/default.blade.php

221 lines
9.9 KiB
PHP
Raw Normal View History

2022-01-01 17:59:24 +00:00
@extends('template.'.config('settings.template').'.content.master')
@section('content')
2023-12-22 17:01:21 +00:00
<main class="single-project style-5">
2023-05-07 19:40:50 +00:00
<!-- ====== start about ====== -->
2023-12-22 20:45:53 +00:00
<section class="about-app style-5 pt-80 pb-80" style="background-color: rgb(235, 218, 240)">
2023-05-07 19:40:50 +00:00
<div class="container">
2023-05-07 20:06:39 +00:00
2023-05-08 19:59:48 +00:00
2023-12-22 20:45:53 +00:00
<div class="content">
<div class="row">
<div class="col-12 col-md-6">
<h1 class="mb-20" style="font-size: 30px;">{{$content->title}}</h1>
<a href="{{ $content->user->path }}">
<img src="{{ $content->user->image }}" width="20" height="20" class="rounded-circle border img-fluid me-2 mb-20">{{ $content->user->name }}
</a>
2023-05-07 20:12:26 +00:00
2023-05-08 19:59:48 +00:00
2023-12-22 20:45:53 +00:00
<h5 class="lh-4">
{{$content->short_description}} Lorem ipsum dolor sit amet, consectetur adipisicing elit. Amet architecto asperiores aspernatur assumenda autem deleniti dolor dolorum, ea est eum itaque laudantium magnam nam omnis repudiandae similique tenetur ullam ut!
</h5>
2023-05-08 19:59:48 +00:00
2023-12-22 22:13:16 +00:00
2023-12-22 20:45:53 +00:00
<a href="" data-bs-toggle="modal" data-bs-target="#install-theme" class="btn rounded-pill bg-blue4 fw-bold text-white mt-50 mb-5 btn-large">
<small>Install Theme </small>
</a>
</div>
<div class="col-12 col-md-6 text-end">
2023-05-08 19:59:48 +00:00
2023-12-22 20:45:53 +00:00
<img src="{{$content->image}}" alt="" class="main-img rounded">
2023-05-08 19:59:48 +00:00
2023-05-07 19:40:50 +00:00
</div>
</div>
</div>
2023-12-22 20:45:53 +00:00
2023-05-07 19:40:50 +00:00
</div>
</section>
<!-- ====== end about ====== -->
2023-12-22 22:13:16 +00:00
<section class="pt-50 pb-50">
2023-05-07 19:40:50 +00:00
<div class="container">
2023-12-22 22:13:16 +00:00
<div class="row">
<div class="col-12">
<div class="section-head style-4 mb-60">
<h2 class="h3"> Screenshots </h2>
2023-05-07 19:40:50 +00:00
</div>
</div>
2023-12-22 22:13:16 +00:00
<div class="col-4">
<img src="//picsum.photos/800/450?v={{rand(0,100)}}" class="img-fluid rounded mb-60">
</div>
2023-05-07 20:12:26 +00:00
2023-12-22 22:13:16 +00:00
<div class="col-4">
<img src="//picsum.photos/800/450?v={{rand(0,100)}}" class="img-fluid rounded mb-60">
2023-05-07 19:40:50 +00:00
</div>
2023-12-22 17:01:21 +00:00
2023-12-22 22:13:16 +00:00
<div class="col-4">
<img src="//picsum.photos/800/450?v={{rand(0,100)}}" class="img-fluid rounded mb-60">
</div>
2023-12-22 17:01:21 +00:00
2023-12-22 22:13:16 +00:00
<div class="col-4">
<img src="//picsum.photos/800/450?v={{rand(0,100)}}" class="img-fluid rounded mb-60">
</div>
2023-12-22 17:01:21 +00:00
2023-12-22 22:13:16 +00:00
<div class="col-4">
<img src="//picsum.photos/800/450?v={{rand(0,100)}}" class="img-fluid rounded mb-60">
2023-05-07 19:40:50 +00:00
</div>
2023-05-07 19:51:08 +00:00
2023-05-07 20:02:20 +00:00
2023-12-22 22:13:16 +00:00
<div class="col-4">
<img src="//picsum.photos/800/450?v={{rand(0,100)}}" class="img-fluid rounded mb-60">
2023-05-07 19:40:50 +00:00
</div>
</div>
</div>
2023-12-22 22:13:16 +00:00
</section>
2022-01-01 17:59:24 +00:00
2023-05-07 19:40:50 +00:00
2023-12-22 22:13:16 +00:00
<!-- ====== start projects ====== -->
<section class="projects style-6 p-0">
2023-05-07 19:40:50 +00:00
<div class="content section-padding rounded-0">
<div class="container">
<div class="section-head text-center mb-60 style-4">
2023-12-22 22:13:16 +00:00
<h2 class="mb-20"> Other <span> Lumino CMS </span> Templates</h2>
2023-05-07 19:40:50 +00:00
<p>We have an experienced team of production and inspection personnel to ensure quality.</p>
</div>
2023-12-22 22:13:16 +00:00
@php($otherContents = filterByContentType("Themes")->filter(function ($item) use ($content) { return $item->id != $content->id; }))
@if($otherContents->isNotEmpty())
<div class="row mb-5">
2023-05-07 19:40:50 +00:00
2023-12-22 22:13:16 +00:00
@foreach($otherContents->take(3) as $otherContent)
<div class="col-12 col-md-4 mb-3">
<a href="{{ $otherContent->path }}">
<div class="portfolio-card mb-50" style="background-color: rgba(235,218,240,0.38);">
2023-05-07 19:40:50 +00:00
<div class="img">
2023-12-22 22:13:16 +00:00
<img src="{{$otherContent->image}}" class="rounded-top" alt="">
2023-05-07 19:40:50 +00:00
</div>
<div class="info">
2023-12-22 22:13:16 +00:00
<h5 class="mb-2" style="color: #6c23d7">
{{$otherContent->title}}
</h5>
<img src="{{ $otherContent->user->image }}" width="20" height="20" class="rounded-circle border img-fluid me-2">{{ $otherContent->user->name }}
2023-05-07 19:40:50 +00:00
<div class="text">
2023-12-22 22:13:16 +00:00
{{$otherContent->short_description}}
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-05-07 19:40:50 +00:00
</div>
2023-12-22 17:01:21 +00:00
</div>
</div>
2023-12-22 22:13:16 +00:00
</a>
2023-12-22 17:01:21 +00:00
</div>
2023-12-22 22:13:16 +00:00
@endforeach
2023-12-22 17:01:21 +00:00
2023-05-07 19:40:50 +00:00
</div>
2023-12-22 22:13:16 +00:00
@endif
2022-01-01 17:59:24 +00:00
2023-05-07 19:40:50 +00:00
</div>
2022-01-01 17:59:24 +00:00
</div>
2023-05-07 19:40:50 +00:00
</section>
<!-- ====== end projects ====== -->
</main>
2023-05-08 19:59:48 +00:00
<!-- Modal -->
<div class="modal fade" id="install-theme" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content" style="background-color: #f7fafc">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Install new Lumino Theme</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form id="formType" enctype="multipart/form-data">
<div class="modal-body">
<div class="row">
<div class="col-10 offset-1 mt-4">
<div class="form-group input-group-lg">
<input type="text" class="form-control" readonly value="{{$content->repository}}" id="cweb-directory" >
<label id="lweb-directory" for="cweb-directory" class="small mt-3 text-muted">Paste this Lumino Theme URL into your Lumino Theme Installation Dialog</label>
</div>
2023-05-09 07:51:23 +00:00
2023-05-08 19:59:48 +00:00
</div>
</div>
</div>
<div class="card-body">
<div class="row" id="how-to-install">
<div class="col-10 offset-1">
<br>
<hr class="mt-4 mb-4">
<br>
</div>
<div class="col-10 offset-1">
<h4>How to install a new Lumino Theme</h4>
<br>
</div>
<div class="col-2 offset-1 mb-3">
<div style="background-color: #5842bc; height: 50px; width: 50px; color: white" class="p-2 rounded-circle text-center fw-bold fs-5">
1.
</div>
</div>
<div class="col-9 mt-2">
Log in to your Lumino Admin and navigate to Configutations -> Theme
</div>
<div class="col-2 offset-1 mb-3">
<div style="background-color: #5842bc; height: 50px; width: 50px; color: white" class="p-2 rounded-circle text-center fw-bold fs-5">
2.
</div>
</div>
<div class="col-9 mt-2">
Stelle sicher, dass das Theme deine Lumino Version <span class="fw-bold" style="color: #6c23d7; font-size: 15px;">{{$content->lumino_versions}}</span> unterstützt.
</div>
<div class="col-2 offset-1 mb-3">
<div style="background-color: #5842bc; height: 50px; width: 50px; color: white" class="p-2 rounded-circle text-center fw-bold fs-5">
3.
</div>
</div>
<div class="col-9 mt-2">
Kopiere die Installations URL von der Seite und fühe es in die obere Maske ein.
</div>
<div class="col-2 offset-1 mb-3">
<div style="background-color: #5842bc; height: 50px; width: 50px; color: white" class="p-2 rounded-circle text-center fw-bold fs-5">
4.
</div>
</div>
<div class="col-9 mt-2">
After Verification Theme can be installed
</div>
</div>
</div>
</form>
</div>
</div>
</div>
2022-01-01 17:59:24 +00:00
@stop