2025-05-16 17:37:53 -06:00
|
|
|
<?php
|
2024-03-03 17:49:05 -06:00
|
|
|
|
|
|
|
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';
|
|
|
|
}
|
|
|
|
|
2025-05-16 17:37:53 -06:00
|
|
|
?>
|
2024-03-03 17:49:05 -06:00
|
|
|
|
|
|
|
<aside>
|
|
|
|
<strong>
|
2025-05-16 17:37:53 -06:00
|
|
|
{{$page['updated']}}
|
2024-03-03 17:49:05 -06:00
|
|
|
</strong>
|
2025-05-16 17:37:53 -06:00
|
|
|
<hr />
|
2024-03-03 17:49:05 -06:00
|
|
|
<strong>
|
2024-09-04 14:32:36 -06:00
|
|
|
@php
|
|
|
|
$title = urldecode($page['title']);
|
|
|
|
@endphp
|
2025-05-16 17:37:53 -06:00
|
|
|
{{$title}}
|
2024-03-03 17:49:05 -06:00
|
|
|
</strong>
|
2025-05-16 17:37:53 -06:00
|
|
|
<hr />
|
|
|
|
<button data-active="{{$menu}}">
|
2024-03-25 12:59:24 -06:00
|
|
|
<svg id="option-menu-pin" class="icon">
|
2025-05-16 17:37:53 -06:00
|
|
|
<use id="option-menu-pin" xlink:href="/assets/images/global/sprite.svg#entypo-pin" />
|
2024-03-20 15:13:50 -06:00
|
|
|
</svg>
|
2024-03-03 17:49:05 -06:00
|
|
|
</button>
|
2025-05-16 17:37:53 -06:00
|
|
|
<button data-active="{{$published}}">
|
2024-03-25 12:59:24 -06:00
|
|
|
<svg id="option-published-icon" class="icon">
|
2025-05-16 17:37:53 -06:00
|
|
|
<use id="option-published-icon" xlink:href="/assets/images/global/sprite.svg#entypo-globe" />
|
2024-03-20 15:13:50 -06:00
|
|
|
</svg>
|
2024-03-03 17:49:05 -06:00
|
|
|
</button>
|
|
|
|
|
2025-05-16 17:37:53 -06:00
|
|
|
<button data-active="{{$featured}}">
|
2024-03-25 12:59:24 -06:00
|
|
|
<svg id="option-feature-icon" class="icon">
|
2025-05-16 17:37:53 -06:00
|
|
|
<use id="option-feature-icon" xlink:href="/assets/images/global/sprite.svg#entypo-star" />
|
2024-03-20 15:13:50 -06:00
|
|
|
</svg>
|
2024-03-03 17:49:05 -06:00
|
|
|
</button>
|
|
|
|
|
2025-05-16 17:37:53 -06:00
|
|
|
</aside>
|