34 lines
		
	
	
		
			878 B
		
	
	
	
		
			PHP
		
	
	
	
		
		
			
		
	
	
			34 lines
		
	
	
		
			878 B
		
	
	
	
		
			PHP
		
	
	
	
|  | <!doctype html> | ||
|  | <html lang="en"> | ||
|  | <head> | ||
|  |     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | ||
|  |     <title>{{ $page->name }}</title> | ||
|  | 
 | ||
|  |     <style> | ||
|  |         {!! $css !!} | ||
|  |     </style> | ||
|  |     @yield('head') | ||
|  | </head> | ||
|  | <body> | ||
|  | <div class="container" id="page-show"> | ||
|  |     <div class="row"> | ||
|  |         <div class="col-md-8 col-md-offset-2"> | ||
|  |             <div class="page-content"> | ||
|  | 
 | ||
|  |                 @include('pages/page-display') | ||
|  | 
 | ||
|  |                 <hr> | ||
|  | 
 | ||
|  |                 <p class="text-muted small"> | ||
|  |                     Created {{$page->created_at->toDayDateTimeString()}} @if($page->createdBy) by {{$page->createdBy->name}} @endif | ||
|  |                     <br> | ||
|  |                     Last Updated {{$page->updated_at->toDayDateTimeString()}} @if($page->updatedBy) by {{$page->updatedBy->name}} @endif | ||
|  |                 </p> | ||
|  | 
 | ||
|  |             </div> | ||
|  |         </div> | ||
|  |     </div> | ||
|  | </div> | ||
|  | </body> | ||
|  | </html> |