소스 검색

Adds 404.html page

Talha Mansoor 12 년 전
부모
커밋
8b5ca07aa9
1개의 변경된 파일30개의 추가작업 그리고 0개의 파일을 삭제
  1. 30 0
      templates/404.html

+ 30 - 0
templates/404.html

@@ -0,0 +1,30 @@
+{% extends "base.html" %}
+
+{% block title %}
+Page not found - {{ super() }}
+{% endblock title %}
+
+{% block head_description %}
+Page does not exist at {{ SITENAME|striptags }} blog. 
+{% endblock head_description %}
+{% block content %}
+<div class="row-fluid">
+    <header class="page_header span10 offset2">
+    <h1>That page doesn't exist!</h1>
+    </header>
+</div>
+
+
+<div class="row-fluid">
+    <div class="span8 offset2">
+        <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>
+        <p>The best thing to do is to use the search form or start again from the <a href="{{ SITEURL }}">home page</a>.</p>
+        <div class="input-append">
+            <form action="search.html">
+                <input type="text" class="span12" placeholder="Search" name="q" id="tipue_search_input">
+                <button class="btn" type="button">Search</button>
+            </form>
+        </div>
+    </div>
+</div>
+{% endblock content %}