1
0
Fork 0
forked from mirror/pixelfed
pixelfed/resources/views/errors/404.blade.php

15 lines
317 B
PHP
Raw Normal View History

2018-05-31 15:59:05 -06:00
@extends('layouts.app')
@section('content')
<div class="container">
<div class="error-page py-5 my-5">
<div class="card mx-5">
2018-08-09 22:53:53 -06:00
<div class="card-body p-5 text-center">
<h1>Page Not Found</h1>
2018-08-09 22:53:53 -06:00
<img src="/img/fred1.gif" class="img-fluid">
2018-05-31 15:59:05 -06:00
</div>
</div>
</div>
</div>
@endsection