public
Description: A simple, private journal in plain text (or an SQLite database).
Homepage: http://code.treypiepmeier.com
Clone URL: git://github.com/trey/logbook.git
logbook / public / static / index.html
100644 43 lines (43 sloc) 1.443 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
  <title>Trey Piepmeier's Logbook</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <!-- <meta name="description" content="ADD A DESCRIPTION OF THIS WEBSITE"> -->
  <style type="text/css" media="screen">
    body { background: #565656; }
    form input[type=search] { color: #888; width: 200px; }
    textarea { border: 1px solid #666; }
    form input[type=submit] {
      width: 100px;
    }
  </style>
</head>
<body>
  <div id="wrapper">
    <div id="header">
    </div><!-- #header -->
    <div id="main">
      <!-- <select name="categories" id="categories" onchange="" size="1">
        <option value="">View all tags</option>
        <option value="1">PHP</option>
        <option value="2">Rails</option>
        <option value="3">Django</option>
      </select> -->
      <form action="search" method="get" accept-charset="utf-8">
        <div><input class="search" type="search" name="some_name" value="Search" id="some_name"></div>
        <div><textarea name="entry" rows="8" cols="40"></textarea></div>
        <div><input class="button" type="submit" value="Log It"></div>
      </form>
      <div id="primary">
        <h1>Title of Page</h1>
      </div><!-- #primary -->
      <div id="secondary">
      </div><!-- #secondary -->
    </div><!-- #main -->
    <div id="footer">
      <p id="copyright">&#169; 2008 Trey Piepmeier. All Rights Reserved.</p>
    </div><!-- #footer -->
  </div><!-- #wrapper -->
</body>
</html>