Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
20 lines (19 sloc)
688 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends "base.html" %} | |
{% block content %} | |
<div class="container py-5"> | |
<div class="row py-5"> | |
<div class="offset-sm-2 col-sm-8 text-center px-4" style="margin-top: 50px;"> | |
<h3>{% trans %}Uh-oh, we couldn't find that.{% endtrans %}</h3> | |
<p class="text-secondary"> | |
{% trans %}404 Page Not Found{% endtrans %} | |
</p> | |
<p> | |
{% trans %}The page you were looking for could not be found.{% endtrans %} | |
</p> | |
<p> | |
{% trans %}If you think there is a mistake, please <a href="/contact/">contact us</a>.{% endtrans %} {% trans %}We do our best to reply within 24 hours. Thank you!{% endtrans %} | |
</p> | |
</div> | |
</div> | |
</div> | |
{% endblock %} |