page_not_found.html 531 B

12345678910111213141516
  1. {% set page_title = _("Oh noes! 404") %}
  2. {% extends theme("layout.html") %}
  3. {% block content %}
  4. <div class="panel page-panel">
  5. <div class="panel-body page-body">
  6. <div class="col-md-12 col-sm-12 col-xs-12">
  7. <h1>{% trans %}Oops, Page not found!{% endtrans %}</h1>
  8. <p>{% trans %}The page you were looking for does not exist.{% endtrans %}</p>
  9. <p><a href="{{url_for('forum.index')}}">{% trans %}Back to the Forums{% endtrans %}</a></p>
  10. </div>
  11. </div>
  12. </div>
  13. {% endblock %}