mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-06 06:44:50 +00:00
11 lines
288 B
PHP
11 lines
288 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">{!!config('instance.page.404.header')!!}</h3>
|
|
<p class="lead">{!!config('instance.page.404.body')!!}</p>
|
|
</div>
|
|
</div>
|
|
@endsection
|