blob: cb68e9041fa3566d8a2b5f18ec401cc1d571f999 (
plain)
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
53
54
55
56
57
|
<!DOCTYPE html>
<html i18n-values='dir:textdirection;'>
<head>
<meta charset="utf-8">
<title i18n-content="title"></title>
<!-- Don't scale the viewport in either portrait or landscape mode.
Note that this means apps will be reflowed when rotated (like iPad).
If we wanted to maintain position we could remove 'maximum-scale' so
that we'd zoom out in portrait mode, but then there would be a bunch
of unusable space at the bottom.
-->
<meta name="viewport"
content="user-scalable=no, width=device-width, maximum-scale=1.0">
<link rel="stylesheet" href="new_tab.css">
<link id="themecss" rel="stylesheet">
<script src="../shared/js/cr.js"></script>
<script src="../shared/js/util.js"></script>
<script src="apps_page.js"></script>
<script src="card_slider.js"></script>
<script src="event_tracker.js"></script>
<script src="grabber.js"></script>
<script src="new_tab.js"></script>
<script src="touch_handler.js"></script>
</head>
<body>
<div id="apps-frame">
<div id="apps-page-list">
<!-- apps pages go here -->
</div>
</div>
<div id="footer">
<div id="footer-border"></div>
<div id="footer-content">
<!-- TODO(estade): this image has a lot of blank space on the right
that needs removing. -->
<img src="../../../app/theme/%DISTRIBUTION%/product_logo.png">
<div id="footer-divider-1" class="footer-divider"></div>
<ul id="dot-list">
<!-- This is another template node (see above). -->
<li class="dot" tabindex="0" role="button"></li>
</ul>
<span i18n-content="recentlyclosed"></span>
<div id="footer-divider-2" class="footer-divider"></div>
<!-- TODO(estade): replace this with actual user login. -->
<span id="user-login">example at gmail.com</span>
<!-- TODO(estade): may want to remove this. -->
<div id="trash"></div>
</div>
</div>
</body>
</html>
|