forked from projects/fipamo
ro
8794ffc715
The colors just needed to be tweaked a bit for the sake on better contrast and readability. Still some trouble spots but will adjust as needed
79 lines
3 KiB
PHP
79 lines
3 KiB
PHP
@extends('frame')
|
|
|
|
@section('title', 'Pages')
|
|
|
|
@section('main-content')
|
|
<section role="book-index-header">
|
|
<div role="book-index-header-left">
|
|
{{ $result['paginate']['sort'] }}
|
|
Pages
|
|
</div>
|
|
<div role="book-index-header-right">
|
|
<a href="/dashboard/pages/all" title="view all pages">
|
|
<button>
|
|
<i class="ti ti-clipboard-list"></i>
|
|
{{ $result['stats']['all'] }}
|
|
</button>
|
|
</a>
|
|
<a href="/dashboard/pages/published" title="view publised pages">
|
|
<button>
|
|
<i class="ti ti-clipboard-check"></i>
|
|
{{ $result['stats']['published'] }}
|
|
</button>
|
|
</a>
|
|
<a href="/dashboard/pages/deleted" title="view deleted pages">
|
|
<button>
|
|
<i class="ti ti-clipboard-off"></i>
|
|
{{ $result['stats']['deleted'] }}
|
|
</button>
|
|
</a>
|
|
</section>
|
|
<section role="book-index-pages">
|
|
@foreach($result['pages'] as $page)
|
|
@php
|
|
$type = '';
|
|
$file = '';
|
|
isset($page['media'][0]['type']) ? $type = $page['media'][0]['type'] : $type = '';
|
|
isset($page['media'][0]['file']) ? $file = $page['media'][0]['file'] : $file = '';
|
|
@endphp
|
|
@if($type =='mp4')
|
|
<a href="/dashboard/page/edit/{{ $page['uuid'] }}" id="{{ $page['uuid'] }}" class="page-link">
|
|
<div class="page-video">
|
|
<video class="post-video" loop muted autoplay>
|
|
<source src="{{ $file }}" type="video/mp4">
|
|
|
|
Sorry, your browser doesn't support embedded videos.
|
|
</video>
|
|
<div id="meta">
|
|
@include('includes.recent-meta')
|
|
</div>
|
|
</div>
|
|
</a>
|
|
@else
|
|
<a href="/dashboard/page/edit/{{ $page['uuid'] }}" id="{{ $page['uuid'] }}" class="page-link">
|
|
<div class="page-bg" style="background: url({{ $file }}) no-repeat center center / cover #b54b6f">
|
|
<div id="meta">
|
|
@include('includes.recent-meta')
|
|
</div>
|
|
</div>
|
|
</a>
|
|
@endif
|
|
@endforeach
|
|
@if($result['numOfPages'])
|
|
<div role="paginate">
|
|
<a class="page-btns" href="/dashboard/pages/{{ $result['paginate']['sort'] }}/{{ $result['paginate']['prevPage'] }}">
|
|
<i class="ti ti-square-arrow-left"></i>
|
|
</a>
|
|
<span class="count">
|
|
{{ $currentPage }}
|
|
of
|
|
{{ $result['numOfPages'] }}
|
|
</span>
|
|
<a class="page-btns" href="/dashboard/pages/{{ $result['paginate']['sort'] }}/{{ $result['paginate']['nextPage'] }}">
|
|
<i class="ti ti-square-arrow-right"></i>
|
|
</a>
|
|
</div>
|
|
@endif
|
|
</section>
|
|
@endsection
|