-
Notifications
You must be signed in to change notification settings - Fork 9
/
newtab.html
106 lines (102 loc) · 3.59 KB
/
newtab.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<title data-msg-name="newTabPageTitle"></title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="fonts/roboto.css">
</head>
<body>
<canvas id="white"></canvas>
<div id="bg"></div>
<div id="header">
<span id="title">New Tab</span>
</div>
<div id="apps-editor-container">
<div id="apps-editor">
<label>
<span data-msg-name="appsEditorURLLabel"></span>
<input type="text" placeholder="http://example.com" id="editor-url">
</label>
<label>
<span data-msg-name="appsEditorIconLabel"></span>
<input type="url" placeholder="http://example.com/icon.png" id="editor-icon">
<button id="editor-fetchicon" data-msg-name="appsEditorAutofindIconButton"></button>
</label>
<button id="editor-closeeditor">✕</button>
</div>
<div id="apps-editor-buttons">
<button id="editor-cancel" data-msg-name="appsEditorCancelButton"></button>
<button id="editor-save" data-msg-name="appsEditorSaveButton"></button>
</div>
</div>
<div id="container"></div>
<div id="findbutton"></div>
<div id="optionbutton"></div>
<div id="drawer">
<input type="text" id="search" autocomplete="off" name="q" data-msg-attr-map="placeholder:findBarPlaceholder" spellcheck="false">
<div id="close"></div>
</div>
<div id="topright">
<div id="sidebar-btn"></div>
</div>
<aside id="sidebar">
<nav>
<a data-target="nw"></a>
</nav>
<section data-id="nw">
<div id="weatherdiv">
<div id="weather">
<div id="temp">
<h1 id="temperature"></h1>
<div id="condition"></div>
</div>
</div>
<footer>
<span><a href="https://darksky.net/poweredby/" target="_blank">Powered by Dark Sky</a></span>
</footer>
</div>
<ol id="newslist"></ol>
</section>
</aside>
<div id="appdrawerframe">
<div id="actualdrawer">
<div class="drawersection" id="recentsites">
<div class="drawerti" id="recmostvis" data-msg-name="drawerRecentlyClosedHeading"></div>
</div>
<div class="drawersection" id="topsites">
<div class="drawerti" id="topmostvis" data-msg-name="drawerTopSitesHeading"></div>
</div>
<div class="drawersection" id="applist">
<div class="drawerti">
<span data-msg-name="drawerChromeAppsHeading"></span>
<div class="drawerbtns">
<a href="https://chrome.google.com/webstore">
<img src="img/cws2.svg">
</a>
<img src="img/search.svg" id="appsearchbtn">
</div>
<input type="text" id="appsearch" data-msg-attr-map="placeholder:appSearchPlaceholder">
</div>
</div>
</div>
<div id="drawerarrow"></div>
</div>
<div id="appsicon"></div>
<div id="bookmarks"></div>
<div id="bmdrawerframe">
<div id="bmdrawer">
<div class="drawerti" data-msg-name="bookmarksHeading"></div>
<div id="bookmarkslist">
<div id="bmsearchtip" data-msg-name="bookmarksEmptyMessage"></div>
</div>
<input type="text" id="bmsearch" data-msg-attr-map="placeholder:bookmarksSearchPlaceholder">
</div>
<div id="bmarrow"></div>
</div>
<iframe id="options"></iframe>
<datalist id="top-sites-datalist"></datalist>
<script src="ntp.js"></script>
<script src="i18n.js" async></script>
</body>
</html>