mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
20 lines
470 B
HTML
20 lines
470 B
HTML
|
{% extends '../base.html' %}
|
||
|
|
||
|
{% block pagetitle %}
|
||
|
Internal Server Error
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>
|
||
|
500 - Internal Server Error
|
||
|
</h1>
|
||
|
<p>
|
||
|
Il server è crashato mentre cercava di generare questa pagina. Oops.
|
||
|
</p>
|
||
|
<p>
|
||
|
<blockquote>
|
||
|
I am sorry, unknown error occured during working with your request, Admin were notified
|
||
|
</blockquote>
|
||
|
<i>@OcteonRygBot, 2017</i>
|
||
|
</p>
|
||
|
{% endblock %}
|