Skip to content

Instantly share code, notes, and snippets.

@jmelett
Created July 19, 2016 20:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmelett/7d6e35596ac8c78752090f38a6b65d69 to your computer and use it in GitHub Desktop.
Save jmelett/7d6e35596ac8c78752090f38a6b65d69 to your computer and use it in GitHub Desktop.
{% extends "fullwidth.html" %}
{% load i18n %}
{% block body_class %}tpl-404{% endblock %}
{% block title %}{% trans "404 - Page not found" %}{% endblock %}
{% block content %}
<div class="text-center">
<h1>{% trans "404 - Page not found" %}</h1>
<p>{% trans "We're sorry, but the requested page could not be found." %}</p>
</div>
{% endblock content %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment