-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
52 lines (43 loc) · 1.56 KB
/
home.html
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
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>acTrakr</title>
<script src='/static/jquery-1.3.2.min.js'></script>
<script src='/static/jquery-ui-1.7.2.custom.min.js'></script>
<script src='/static/jquery.hotkeys.js'></script>
<script src='/static/actrakr.js'></script>
<link href="/static/screen.css" media="screen" rel="stylesheet" type="text/css" />
<link href="/static/actrakr.css" media="screen" rel="stylesheet" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
</head>
<body>
<div class='banner'>
<div class='clearfix'>
{% if current_user %}
<div class='logout'> Hi, {{ current_user }}! <a href='{{ logout_url }}'>logout</a></div>
{% endif %}
<h2>acTrakr</h2>
</div>
</div>
<div id='wrapper' class='container'>
{% if flash %}
<div class='flash'> {{ flash }} </div>
{% endif %}
{% for ctx in ctx_list %}
{% include "items-list.html" %}
{% endfor %}
<!--div id='done_wrapper' style='padding-left: 55px'>
<a onclick='$("#done").blind()' href='#'> Past Accomplishments </a>
<div id='done' style='display:none'>
Your Done items
</div>
</div-->
</div>
{% if new_item %}
<script>$('#list_{{ new_item }}').effect('highlight', {}, 1000);</script>
{% endif %}
<script> $("#new_item").focus(); </script>
</body>
</html>