~chipaca/unity-lens-video/custom-user-agent

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}

{% block pagetitle %}Page not found{% endblock %}

{% block pageheader %}Page not found{% endblock %}

{% block content %}

<div class="alert alert-error">
    <p>The page you are trying to reach does not exist (404).</p>
    <p>Path: <strong>{{ request_path }}</strong></p>
    <p>If you think this is some kind of error, 
    please drop us an email at
    <a href="mailto:bashoneliners@googlegroups.com">bashoneliners@googlegroups.com</a>,
    along with anything you might have done that may have caused the error.
    </p>
</div>

<p><a href="/">Back to the main page.</a></p>

{% endblock %}