@extends('library.layouts.app') @section('title', $anthology['title'] . ' · 巴利书库') @section('breadcrumb') @endsection @once @push('styles') @endpush @endonce @section('content') {{-- Hero --}}
{{-- 3D Book Cover --}}
@if($anthology['cover_image']) {{ $anthology['title'] }} @else
{{ $anthology['title'] }}
{{ $anthology['subtitle'] ?? '' }}
@endif
{{-- Content --}}
{{ $anthology['title'] }}
@if(!empty($anthology['subtitle']))
{{ $anthology['subtitle'] }}
@endif @if(!empty($anthology['tags']))
@foreach($anthology['tags'] as $tag) {{ $tag }} @endforeach
@endif
@if(!empty($anthology['author']['avatar'])) @else
{{ $anthology['author']['initials'] }}
@endif
作者 {{ $anthology['author']['name'] }}
最后更新 {{ $anthology['updated_at'] }}
章节数 {{ $anthology['children_number'] }} 章节
创建时间 {{ $anthology['created_at'] }}
@if(!empty($anthology['description']))
{{ $anthology['description'] }}
@endif
@if(!empty($anthology['articles'])) 在线阅读 @endif 在编辑器中打开
{{-- Body --}}
{{-- Left --}}
{{-- About --}} @if(!empty($anthology['about']))
关于本文集
@foreach(explode("\n", $anthology['about']) as $para) @if(trim($para))

{{ trim($para) }}

@endif @endforeach
@endif {{-- TOC --}}
目录
{{ $anthology['children_number'] }} 章节
{{-- /col --}} {{-- Sidebar --}}
{{-- Meta --}}
文集信息
@if(!empty($anthology['language']))
语言 {{ $anthology['language'] }}
@endif
章节 {{ $anthology['children_number'] }} 章节
创建 {{ $anthology['created_at'] }}
更新 {{ $anthology['updated_at'] }}
@if(!empty($anthology['category']))
分类 {{ $anthology['category'] }}
@endif
{{-- Author --}}
作者
@if(!empty($anthology['author']['avatar'])) @else
{{ $anthology['author']['initials'] }}
@endif
{{ $anthology['author']['name'] }}
@if($anthology['author']['article_count']) {{ $anthology['author']['article_count'] }} 篇文章 @endif
@if(!empty($anthology['author']['bio']))
{{ $anthology['author']['bio'] }}
@endif
{{-- Related --}} @if($related->count()) @endif
@endsection