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"> |
---|
4 | <head> |
---|
5 | <title>Galaxy</title> |
---|
6 | |
---|
7 | <style> |
---|
8 | li > a > div { |
---|
9 | white-space: nowrap; |
---|
10 | overflow: hidden; |
---|
11 | text-overflow: ellipsis; |
---|
12 | } |
---|
13 | div.secondary { |
---|
14 | font-size: 13px; |
---|
15 | color: gray; |
---|
16 | } |
---|
17 | div.counts { |
---|
18 | padding-top: 1px; |
---|
19 | font-size: 13px; |
---|
20 | color: gray; |
---|
21 | } |
---|
22 | .logo { |
---|
23 | background: center left no-repeat url(${h.url_for('/static/images/galaxyIcon_noText.png')}); |
---|
24 | padding-left: 30px; |
---|
25 | } |
---|
26 | </style> |
---|
27 | |
---|
28 | <style type="text/css" media="screen">@import "${h.url_for('/static/jqtouch/jqtouch.css')}";</style> |
---|
29 | <script type="text/javascript" src="${h.url_for('/static/scripts/jquery.js')}"></script> |
---|
30 | <script type="text/javascript" src="${h.url_for('/static/scripts/jqtouch.js')}"></script> |
---|
31 | <script type="text/javascript" charset="utf-8"> |
---|
32 | $(document).jQTouch( { |
---|
33 | icon: "${h.url_for('static/images/galaxyIcon_noText.png')}", |
---|
34 | slideInSelector: 'ul li a, .row a, a.async' |
---|
35 | }); |
---|
36 | </script> |
---|
37 | </head> |
---|
38 | <body> |
---|
39 | |
---|
40 | |
---|
41 | <div id="home" selected="true"> |
---|
42 | <div class="toolbar"> |
---|
43 | <h1><span class="logo">Galaxy</span></h1> |
---|
44 | <a class="button async" href="${h.url_for( action='settings' )}">Settings</a> |
---|
45 | </div> |
---|
46 | <ul class="edgetoedge"> |
---|
47 | <li><a href="${h.url_for( action='history_list' )}">Histories</a></li> |
---|
48 | </ul> |
---|
49 | </div> |
---|
50 | |
---|
51 | </body> |
---|
52 | </html> |
---|