2013-08-21 12:21:53 -04:00
---
2014-05-29 18:42:05 -04:00
aliases:
- /layout/404/
date: 2013-08-21
2015-01-09 13:51:15 -05:00
linktitle: "Custom 404 page"
2014-04-23 03:00:11 -04:00
menu:
main:
2014-05-29 18:42:05 -04:00
parent: layout
next: /taxonomies/overview
notoc: true
2015-05-25 15:16:10 -04:00
next: /templates/debugging
2014-05-29 18:42:05 -04:00
prev: /templates/sitemap
title: 404.html Templates
weight: 100
2013-08-21 12:21:53 -04:00
---
2014-12-04 11:26:12 -05:00
When using Hugo with [GitHub Pages ](http://pages.github.com/ ), you can provide
2015-08-04 14:00:08 -04:00
your own template for a [custom 404 error page ](https://help.github.com/articles/custom-404-pages/ )
by creating a 404.html template file in your `/layouts` folder.
When Hugo generates your site, the `404.html` file will be placed in the root.
2013-08-21 12:21:53 -04:00
2015-05-15 11:04:25 -04:00
404 pages are of the type ** "node"** and have all the [node
2013-08-21 12:21:53 -04:00
variables](/layout/variables/) available to use in the templates.
2015-01-09 13:51:15 -05:00
In addition to the standard node variables, the 404 page has access to
2014-12-04 11:26:12 -05:00
all site content accessible from `.Data.Pages` .
2013-08-21 12:21:53 -04:00
▾ layouts/
404.html
## 404.html
2015-01-09 13:51:15 -05:00
2013-08-21 12:21:53 -04:00
This is a basic example of a 404.html template:
2014-09-03 00:12:26 -04:00
{{ partial "header.html" . }}
{{ partial "subheader.html" . }}
2013-08-21 12:21:53 -04:00
< section id = "main" >
< div >
< h1 id = "title" > {{ .Title }}< / h1 >
< / div >
< / section >
2015-01-29 15:18:19 -05:00
{{ partial "footer.html" . }}
2013-08-21 12:21:53 -04:00
2015-05-15 11:04:25 -04:00
### Automatic Loading
2015-08-04 14:00:08 -04:00
Your 404.html file can be set to load automatically when a visitor enters a mistaken URL path, dependent upon the web serving environment you are using. For example:
2015-05-15 11:04:25 -04:00
2015-08-04 14:00:08 -04:00
* _GitHub Pages_ - it's automatic.
2015-05-15 11:04:25 -04:00
* _Apache_ - one way is to specify `ErrorDocument 404 /404.html` in an `.htaccess` file in the root of your site.
2015-08-04 14:00:08 -04:00
* _Nginx_ - you might specify `error_page 404 = /404.html;` in your `nginx.conf` file.
2015-05-15 11:04:25 -04:00
* _Amazon AWS S3_ - when setting a bucket up for static web serving, you can specify the error file.