31 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <div class="page {{$page->draft ? 'draft' : ''}} entity-list-item" data-entity-type="page" data-entity-id="{{$page->id}}">
 | |
|     <h3>
 | |
|         <a href="{{ $page->getUrl() }}" class="text-page entity-list-item-link"><i class="zmdi zmdi-file-text"></i><span class="entity-list-item-name">{{ $page->name }}</span></a>
 | |
|     </h3>
 | |
| 
 | |
|     @if(isset($page->searchSnippet))
 | |
|         <p class="text-muted">{!! $page->searchSnippet !!}</p>
 | |
|     @else
 | |
|         <p class="text-muted">{{ $page->getExcerpt() }}</p>
 | |
|     @endif
 | |
| 
 | |
|     @if(isset($style) && $style === 'detailed')
 | |
|         <div class="row meta text-muted text-small">
 | |
|             <div class="col-md-6">
 | |
|                 Created {{$page->created_at->diffForHumans()}} @if($page->createdBy)by {{$page->createdBy->name}}@endif <br>
 | |
|                 Last updated {{ $page->updated_at->diffForHumans() }} @if($page->updatedBy)by {{$page->updatedBy->name}} @endif
 | |
|             </div>
 | |
|             <div class="col-md-6">
 | |
|                 <a class="text-book" href="{{ $page->book->getUrl() }}"><i class="zmdi zmdi-book"></i>{{ $page->book->getShortName(30) }}</a>
 | |
|                 <br>
 | |
|                 @if($page->chapter)
 | |
|                     <a class="text-chapter" href="{{ $page->chapter->getUrl() }}"><i class="zmdi zmdi-collection-bookmark"></i>{{ $page->chapter->getShortName(30) }}</a>
 | |
|                 @else
 | |
|                     <i class="zmdi zmdi-collection-bookmark"></i> Page is not in a chapter
 | |
|                 @endif
 | |
|             </div>
 | |
|         </div>
 | |
|     @endif
 | |
| 
 | |
| 
 | |
| </div> |