forked from projects/fipamo
ro
a10dbcdeff
role was being used incorrectly for icon styling, so that has been corrected to use the class attribute instead
53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
@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>
|
|
{{ $page['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>
|