2024-03-04 00:49:05 +01:00
|
|
|
@php
|
|
|
|
|
|
|
|
if($page['menu'] == 'true')
|
|
|
|
{
|
|
|
|
$menu = 'true';
|
|
|
|
}else{
|
|
|
|
$menu = 'false';
|
|
|
|
}
|
|
|
|
|
|
|
|
if($page['published'] == 'true')
|
|
|
|
{
|
|
|
|
$published = 'true';
|
|
|
|
}else{
|
|
|
|
$published = 'false';
|
|
|
|
}
|
|
|
|
|
|
|
|
if($page['featured'] == 'true')
|
|
|
|
{
|
|
|
|
$featured = 'true';
|
|
|
|
}else{
|
|
|
|
$featured = 'false';
|
|
|
|
}
|
|
|
|
|
|
|
|
@endphp
|
|
|
|
|
|
|
|
<aside>
|
|
|
|
<strong>
|
|
|
|
{{ $page['updated'] }}
|
|
|
|
</strong>
|
|
|
|
<hr/>
|
|
|
|
<strong>
|
2024-09-04 22:32:36 +02:00
|
|
|
@php
|
|
|
|
$title = urldecode($page['title']);
|
|
|
|
@endphp
|
|
|
|
{{ $title }}
|
2024-03-04 00:49:05 +01:00
|
|
|
</strong>
|
|
|
|
<hr/>
|
|
|
|
<button data-active="{{ $menu }}">
|
2024-03-25 19:59:24 +01:00
|
|
|
<svg id="option-menu-pin" class="icon">
|
2024-03-20 22:13:50 +01:00
|
|
|
<use id="option-menu-pin" xlink:href="/assets/images/global/sprite.svg#entypo-pin"/>
|
|
|
|
</svg>
|
2024-03-04 00:49:05 +01:00
|
|
|
</button>
|
|
|
|
<button data-active="{{ $published }}">
|
2024-03-25 19:59:24 +01:00
|
|
|
<svg id="option-published-icon" class="icon">
|
2024-03-20 22:13:50 +01:00
|
|
|
<use id="option-published-icon" xlink:href="/assets/images/global/sprite.svg#entypo-globe"/>
|
|
|
|
</svg>
|
2024-03-04 00:49:05 +01:00
|
|
|
</button>
|
|
|
|
|
|
|
|
<button data-active="{{ $featured }}">
|
2024-03-25 19:59:24 +01:00
|
|
|
<svg id="option-feature-icon" class="icon">
|
2024-03-20 22:13:50 +01:00
|
|
|
<use id="option-feature-icon" xlink:href="/assets/images/global/sprite.svg#entypo-star"/>
|
|
|
|
</svg>
|
2024-03-04 00:49:05 +01:00
|
|
|
</button>
|
|
|
|
|
|
|
|
</aside>
|