23 lines
366 B
HTML
23 lines
366 B
HTML
{% extends "newbase.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Change Workout {% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<h1>Error 404 Page not found</h1>
|
|
|
|
<ul class="main-content">
|
|
<li class="grid_2">
|
|
<p>
|
|
We could not find the page on our server.
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_other.html' %}
|
|
{% endblock %}
|