Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

404.html 465 B

12345678910111213141516
  1. {%- block title -%}Not Found{%- endblock -%}
  2. {%- block header -%}
  3. <h2 class="text-danger"><i class="icon-exclamation-sign"></i> Page missing or moved</h2>
  4. {%- endblock -%}
  5. {% block content %}
  6. <div class="404-content">
  7. <div class="panel panel-default">
  8. <div class="panel-body">
  9. <p>We are very sorry for this, but the page you are looking for is missing
  10. (this could be because of a typo in the address) or moved.</p>
  11. </div>
  12. </div>
  13. </div>
  14. {% endblock %}