Suche
@include('frontend.partials.simpleSearchForm')
@if (isset($results))
@foreach($results as $result)
@if (!is_null($result->getAsset( 'abstract_output' )))
@endif
@if (!is_null($result->getAsset('title_output')))
{{ $result->getAsset('title_output') }}
@else
results_missingtitle
@endif
@if ($result->getAsset('year'))
( {{ $result->getAsset('year') }} )
@endif
@if (!is_null($result->getAsset('author')))
@foreach($result->getAsset('author') as $authorIndex => $author)
{{ htmlspecialchars($author)}}
@endforeach
@endif
{{ htmlspecialchars($result->getAsset('abstract_output')) }}
@endforeach
@endif
@include('frontend.solrsearch.pagination')