1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-28 18:56:58 +00:00
pixelfed/resources/views/errors/custom.blade.php

10 lines
309 B
PHP

@extends('layouts.app')
@section('content')
<div class="container">
<div class="error-page py-5 my-5 text-center">
<h3 class="font-weight-bold">{!! $title ?? config('instance.page.404.header')!!}</h3>
<p class="lead">{!! $body ?? config('instance.page.404.body')!!}</p>
</div>
</div>
@endsection