@extends('layouts.app') @section('page-title', $entry->title . " - " . config('app.name') ) @section('content') {{ \Diglactic\Breadcrumbs\Breadcrumbs::render() }}
@if( $entry->main_image ) @else
@endif
@if( $entry->description )
{{ $entry->description }}
@endif @if( $entry->hashes->isNotEmpty() )
@foreach( $entry->hashes->all() as $hash ) Filename: {{ $hash->filename }}
CRC32: {{ $hash->hash_crc32 }}
SHA-1: {{ $hash->hash_sha1 }}
Verified: {{ $hash->verified }}
@endforeach
@endif @if( $entry->staff_credits )

Staff credits

{{ $entry->staff_credits }}
@endif
@include('entries.comments') @livewire('entry-files-modal') @endsection