@extends('layouts.default') @section('title') {{ $page->title }} @stop @section('top') @if($page->show_title) @endif @stop @section('content') @auth('edit')

Page Owner: {!! $page->owner !!}

Page Created: {!! html_ago($page->created_at) !!}

Last Updated: {!! html_ago($page->updated_at) !!}

Edit Page Delete Page

@endauth @if (Config::get('cms.eval', false)) @else {!! $page->body !!} @endif @stop @section('bottom') @auth('edit') @include('pages.delete') @endauth @stop @section('css') {!! $page->css !!} @stop @section('js') {!! $page->js !!} @stop