url fix for page browser ui
the ui that is for browsing available pages was using the old url from the previous routing set up and needed to be updated
This commit is contained in:
parent
743d7c4d90
commit
59ab2e1536
1 changed files with 76 additions and 76 deletions
|
@ -43,7 +43,7 @@
|
|||
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">
|
||||
<a href="/dashboard/pages/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">
|
||||
|
@ -56,7 +56,7 @@
|
|||
</div>
|
||||
</a>
|
||||
@else
|
||||
<a href="/dashboard/page/edit/{{ $page['uuid'] }}" id="{{ $page['uuid'] }}" class="page-link">
|
||||
<a href="/dashboard/pages/edit/{{$page['uuid']}}" id="{{$page['uuid']}}" class="page-link">
|
||||
<div class="page-bg" style="background: url({{$file}}) no-repeat center center / cover #cf436b">
|
||||
<div id="meta">
|
||||
@include('includes.recent-meta')
|
||||
|
|
Loading…
Add table
Reference in a new issue