fipamo/resources/views/includes/recent-meta.blade.php

55 lines
1.1 KiB
PHP
Raw Normal View History

<?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';
}
?>
<aside>
<strong>
{{$page['updated']}}
</strong>
<hr />
<strong>
@php
$title = urldecode($page['title']);
@endphp
{{$title}}
</strong>
<hr />
<button data-active="{{$menu}}">
<svg id="option-menu-pin" class="icon">
<use id="option-menu-pin" xlink:href="/assets/images/global/sprite.svg#entypo-pin" />
</svg>
</button>
<button data-active="{{$published}}">
<svg id="option-published-icon" class="icon">
<use id="option-published-icon" xlink:href="/assets/images/global/sprite.svg#entypo-globe" />
</svg>
</button>
<button data-active="{{$featured}}">
<svg id="option-feature-icon" class="icon">
<use id="option-feature-icon" xlink:href="/assets/images/global/sprite.svg#entypo-star" />
</svg>
</button>
</aside>