Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion project_name/templates/404.html
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
<h1>404 - Not Found</h1>
{% extends "base.html" %}
{% block content %}
<h1>404 - Not Found</h1>
{% endblock %}


7 changes: 6 additions & 1 deletion project_name/templates/500.html
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
<h1>500 - Server Error</h1>
{% extends "base.html" %}
{% block content %}
<h1>500 - Server Error</h1>
{% endblock %}


9 changes: 7 additions & 2 deletions project_name/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
<html>
<head>
<meta charset="utf-8">
<title></title>
<title>Rroject_skel</title>
</head>
<body>

<div>
<br>
<br>
{% block content %}
{% endblock %}
</div>
</body>
</html>