35 lines
740 B
PHP
35 lines
740 B
PHP
<div class="app-page-title">
|
|
<div class="page-title-wrapper">
|
|
<div class="page-title-heading">
|
|
@if (trim($__env->yieldContent('page_icon')))
|
|
<div class="page-title-icon f32">
|
|
<i class="@yield('page_icon','')"></i>
|
|
</div>
|
|
@endif
|
|
|
|
@yield('page_title','Page Title')
|
|
<div class="page-title-subheading">
|
|
@yield('page_subtitle','')
|
|
</div>
|
|
</div>
|
|
|
|
<div class="page-title-actions">
|
|
@yield('page_actions')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@section('page-scripts')
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('button[id=entry-edit]').on('click',function(item) {
|
|
item.preventDefault();
|
|
|
|
if ($(this).hasClass('btn-dark'))
|
|
return;
|
|
|
|
editmode();
|
|
});
|
|
});
|
|
</script>
|
|
@append |