404.html 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. {% extends 'base.html' %}
  2. {% block title %}
  3. Page not found · {{ super() }}
  4. {% endblock title %}
  5. {% block head_description %}
  6. Page does not exist at {{ SITENAME|striptags|e }} blog.
  7. {% endblock head_description %}
  8. {% block content %}
  9. <div class="row-fluid">
  10. <header class="page-header span10 offset2">
  11. <h1>That page doesn't exist!</h1>
  12. </header>
  13. </div>
  14. <div class="row-fluid">
  15. <div class="span8 offset2">
  16. <p>Sorry, but the page you are looking for cannot be found. It seems that the page you were trying to reach doesn't exist, or may be it has just moved, or it no longer exists.</p>
  17. <p>The best thing to do is to use the search form or start again from the <a href="{{ SITEURL }}">home page</a>.</p>
  18. <div class="input-append">
  19. <form action="{{ SITEURL }}/search.html" onsubmit="return validateForm(this.elements['q'].value)">
  20. <input type="text" class="span12" placeholder="Search" name="q" id="tipue_search_input_404">
  21. <button class="btn" type="submit">Search</button>
  22. </form>
  23. </div>
  24. </div>
  25. </div>
  26. {% endblock content %}