From 498913806182905cc0c14bd12a61f9af26fa16b4 Mon Sep 17 00:00:00 2001 From: "David T. Sadler" Date: Mon, 17 Feb 2020 19:59:15 +0000 Subject: Switch over to Jigsaw --- source/_posts/custom-404-page.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 source/_posts/custom-404-page.md (limited to 'source/_posts/custom-404-page.md') diff --git a/source/_posts/custom-404-page.md b/source/_posts/custom-404-page.md new file mode 100644 index 0000000..d091fd0 --- /dev/null +++ b/source/_posts/custom-404-page.md @@ -0,0 +1,34 @@ +--- +extends: _layouts.post +section: content +title: Custom 404 Pages +date: 2018-12-23 +description: Add a custom 404 page is easy with Jigsaw +categories: [configuration, feature] +--- + +This starter template includes a custom __404 Not Found__ error page, located at `/source/404.blade.php`. [To preview the 404 page](/404), you can visit `/404` in your browser. + +```html + + +@extends('_layouts.master') + +@section('body') +
+

404

+ +

Page not found.

+ +
+ +

+ Need to update this page? See the Jigsaw documentation. +

+
+@endsection +``` + +--- + +Depending on where your site is hosted, you may need to configure your server to use the custom 404 page. For more details, visit the [Jigsaw documentation about configuring a custom 404 page](https://jigsaw.tighten.co/docs/custom-404-page/). -- cgit v1.2.3-13-gbd6f