@extends('frontend.layouts.app') @section('title', $author->name . ' — BrigataFolgore.net') @section('content')
@if($author->avatar) @else
{{ strtoupper(substr($author->name, 0, 1)) }}
@endif

{{ __t('author.label', 'Autore') }}

{{ $author->name }}

@if($author->bio)

{{ $author->bio }}

@endif

{{ __t('author.articles_by', 'Articoli di') }} {{ $author->name }} ({{ $articles->total() }})

@if($articles->isEmpty())

{{ __t('author.no_articles', 'Nessun articolo da questo autore.') }}

@else
@foreach($articles as $article) @endforeach
{{ $articles->links() }}
@endif
@endsection