~zeitgeist/zeitgeist-project-website/trunk

« back to all changes in this revision

Viewing changes to templates/404.html

  • Committer: Jamal Fanaian
  • Date: 2009-12-04 00:33:40 UTC
  • Revision ID: jfanaian@its-4-20091204003340-76mknrlnmmg9zwvx
Added 404 page

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
 
2
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
 
3
<html xmlns="http://www.w3.org/1999/xhtml">
 
4
<head>
 
5
    <title>{% block title %}Zeitgeist Project - Desktop Activity Logging{% endblock %}</title>
 
6
    <meta name="description" content="Zeitgeist is a service which logs the user's activites and events">
 
7
    <meta name="keywords" content="Activity Logger, Desktop Activity">
 
8
 
 
9
    <link rel="stylesheet" type="text/css" href="/static/css/styles.css" />
 
10
    <link rel="shortcut icon" href="/favicon.ico" />
 
11
    <style type="text/css">
 
12
        body {
 
13
            margin: 5em 0;
 
14
        }
 
15
 
 
16
        #window {
 
17
            text-align: center;
 
18
        }
 
19
 
 
20
        img {
 
21
            margin-bottom: 1em;
 
22
        }
 
23
 
 
24
        h1 {
 
25
            font-size: 24pt;
 
26
            font-weight: bold;
 
27
            margin: 0.5em 0;
 
28
        }
 
29
    </style>
 
30
</head>
 
31
<body>
 
32
    <div id="window">
 
33
        <img src="/static/img/lost.png" alt="Lost Ghost" />
 
34
        <h1>Lost?</h1>
 
35
        <p>Sorry, it seems like you're lost. Why don't you start at the <a href="/" title="Go to the Zeitgeist home page">beginning</a>?</p>
 
36
        
 
37
    </div>
 
38
</body>
 
39
</html>