]> BookStack Code Mirror - bookstack/blobdiff - resources/views/errors/404.blade.php
Updated Spanish translation
[bookstack] / resources / views / errors / 404.blade.php
index 0062bb25895ca9f276c3fd9ba89e4657d9a2917b..d614edca8e53a1e78d421d3ecc47e379556ad45f 100644 (file)
@@ -1,11 +1,40 @@
-@extends('base')
+@extends('simple-layout')
 
 @section('content')
+<div class="container">
 
+    <p>&nbsp;</p>
 
-<div class="container">
-    <h1>Page Not Found</h1>
-    <p>The page you were looking for could not be found.</p>
+    <div class="card">
+        <h3>@icon('danger') {{ $message or trans('errors.404_page_not_found') }}</h3>
+        <div class="body">
+            <h5>{{ trans('errors.sorry_page_not_found') }}</h5>
+            <p><a href="{{ baseUrl('/') }}" class="button outline">{{ trans('errors.return_home') }}</a></p>
+        </div>
+    </div>
+
+    @if (setting('app-public') || !user()->isDefault())
+        <div class="row">
+            <div class="col-md-4">
+                <div class="card">
+                    <h3 class="text-muted">@icon('page') {{ trans('entities.pages_popular') }}</h3>
+                    @include('partials.entity-list', ['entities' => Views::getPopular(10, 0, [\BookStack\Page::class]), 'style' => 'compact'])
+                </div>
+            </div>
+            <div class="col-md-4">
+                <div class="card">
+                    <h3 class="text-muted">@icon('book') {{ trans('entities.books_popular') }}</h3>
+                    @include('partials.entity-list', ['entities' => Views::getPopular(10, 0, [\BookStack\Book::class]), 'style' => 'compact'])
+                </div>
+            </div>
+            <div class="col-md-4">
+                <div class="card">
+                    <h3 class="text-muted">@icon('chapter') {{ trans('entities.chapters_popular') }}</h3>
+                    @include('partials.entity-list', ['entities' => Views::getPopular(10, 0, [\BookStack\Chapter::class]), 'style' => 'compact'])
+                </div>
+            </div>
+        </div>
+    @endif
 </div>
 
 @stop
\ No newline at end of file