mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
14 lines
310 B
HTML
14 lines
310 B
HTML
{% extends 'base_rigs.html' %}
|
|
{% load staticfiles %}
|
|
{% block title %}Page Not Found{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="col-sm-12">
|
|
<h1>404: Not Found</h1>
|
|
|
|
<div class="text-center">
|
|
<img src="{% static 'imgs/404.jpg' %}"/>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|