This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
| 2 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| 3 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> |
| 4 |
<head> |
| 5 |
<title>TwoTwoDo!</title> |
| 6 |
<link rel="stylesheet" href="twotwodo.css" type="text/css" media="screen" charset="utf-8" /> |
| 7 |
<meta http-equiv="Content-type" content="application/xhtml+xml; charset=utf-8" /> |
| 8 |
</head> |
| 9 |
|
| 10 |
<body id="twotwodo"> |
| 11 |
|
| 12 |
<div id="header"> |
| 13 |
<h1>TwoTwoDo!</h1> |
| 14 |
<span id="soap"> |
| 15 |
by <a href="http://soap.coders.fm/projects/twotwodo">soap</a> |
| 16 |
</span> |
| 17 |
<div id="cookies"> |
| 18 |
<select id="cookie-list"> |
| 19 |
<option value="default">default</option> |
| 20 |
</select> |
| 21 |
<span id="delete-cookie">delete?</span> |
| 22 |
</div> |
| 23 |
</div> |
| 24 |
|
| 25 |
<table cellspacing="16" id="tasks"> |
| 26 |
<tr> |
| 27 |
<td class="section" id="iu"> |
| 28 |
<div class="section-title">important / urgent</div> |
| 29 |
</td> |
| 30 |
<td class="section" id="niu"> |
| 31 |
<div class="section-title">non-important / urgent</div> |
| 32 |
</td> |
| 33 |
</tr> |
| 34 |
<tr> |
| 35 |
<td class="section" id="inu"> |
| 36 |
<div class="section-title">important / non-urgent</div> |
| 37 |
</td> |
| 38 |
<td class="section" id="ninu"> |
| 39 |
<div class="section-title">non-important / non-urgent</div> |
| 40 |
</td> |
| 41 |
</tr> |
| 42 |
</table> |
| 43 |
|
| 44 |
<div id="memo-section"> |
| 45 |
<div id="memo-title"> |
| 46 |
<div id="memo-ctrl"> |
| 47 |
<span id="new-memo">new</span> - |
| 48 |
<span id="list-memos">list memos</span> |
| 49 |
</div> |
| 50 |
MemoWiki: <span id="current-memo">memo</span> |
| 51 |
</div> |
| 52 |
<div id="memo"></div> |
| 53 |
</div> |
| 54 |
|
| 55 |
<script src="jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script> |
| 56 |
<script src="twotwodo.js" type="text/javascript" charset="utf-8"></script> |
| 57 |
</body> |
| 58 |
</html> |