diff --git a/pinry/core/templates/404.html b/pinry/core/templates/404.html new file mode 100644 index 0000000..956dd02 --- /dev/null +++ b/pinry/core/templates/404.html @@ -0,0 +1,15 @@ +{% extends 'core/base.html' %} + + +{% block title %}404{% endblock %} + +{% block yield %} +
+
+
+

404

+

This page does not exist.

+
+
+
+{% endblock %} diff --git a/pinry/core/templates/500.html b/pinry/core/templates/500.html new file mode 100644 index 0000000..2aa6607 --- /dev/null +++ b/pinry/core/templates/500.html @@ -0,0 +1,17 @@ +{% extends 'core/base.html' %} + + +{% block title %}500{% endblock %} + +{% block yield %} +
+
+
+

500

+

Something went wrong! If you figure out what it was please + submit an issue on Pinry's + GitHub Issue's page.

+
+
+
+{% endblock %}