@extends('theme::layouts.app') @section('content')

{{ $prefix }}

@forelse($publications as $publication)

{{ $publication->title }}

@if($publication->post->author) {{ $publication->post->author->name }} · @endif
@if($publication->taxonomyTerms->isNotEmpty())
@foreach($publication->taxonomyTerms as $term) {{ $term->title }} @endforeach
@endif @if($publication->meta_description)

{{ $publication->meta_description }}

@endif
@empty

No posts yet.

@endforelse
{{ $publications->links() }}
@endsection