Files
Pinry/pinry/templates/500.html

17 lines
496 B
HTML
Raw Normal View History

{% extends "base.html" %}
2012-04-27 02:54:42 +00:00
{% block title %}500{% endblock %}
{% block yield %}
<div class="container">
<div class="row">
<div id="form" class="span6 offset3">
<h1>500</h1>
<p>Something went wrong! If you figure out what it was please
submit an issue on Pinry's
2018-12-24 12:56:29 +08:00
<a href="https://github.com/pinry/pinry/issues">GitHub Issue's page</a>.</p>
2012-04-27 02:54:42 +00:00
</div>
</div>
</div>
{% endblock %}