2016-03-13 02:14:19 +09:00
|
|
|
{% extends "layout/base.html" %}
|
|
|
|
{% block head_add_header %}
|
2016-03-13 04:08:54 +09:00
|
|
|
<link type="text/css" rel="stylesheet" href="/static/error/404.css" rel="stylesheet">
|
|
|
|
<script type="text/javascript" src="/static/jquery-backstretch-2.0.4/jquery.backstretch.min.js"></script>
|
|
|
|
<script type="text/javascript" src="/static/error/404.js"></script>
|
2016-03-13 02:14:19 +09:00
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="content">
|
|
|
|
<section class="section active">
|
|
|
|
<header class="headline">
|
|
|
|
<div class="title">
|
2016-03-13 04:08:54 +09:00
|
|
|
<h1>ERR {{statusCode }} : {{ statusMessage }}</h1>
|
2016-03-07 04:31:13 +09:00
|
|
|
</div>
|
2016-03-13 02:14:19 +09:00
|
|
|
</header>
|
2016-03-13 04:08:54 +09:00
|
|
|
<p class="inner">
|
|
|
|
request url {{ path }} is {{ statusMessage }}
|
|
|
|
</p>
|
2016-03-07 04:31:13 +09:00
|
|
|
|
2016-03-13 02:14:19 +09:00
|
|
|
<div class="backtomain">
|
|
|
|
<p><a href="/">Go back to the homepage</a></p>
|
2016-03-07 04:31:13 +09:00
|
|
|
</div>
|
2016-03-13 02:14:19 +09:00
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|