-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewtab.html
82 lines (79 loc) · 3.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>New Tab</title>
<link href="/styles.css" rel="stylesheet" type="text/css" />
<link rel='icon' type='image/png' href='/icons/48.png' />
</head>
<body>
<div id="app">
<div id="speed-dial">
<fieldset>
<legend>Main</legend>
<div class="links">
<div class="links-group">
<a href="https://annimon.com/" rel="noopener noreferrer">annimon.com</a>
<a class="font-sm" href="https://annimon.com/index.php?act=digest" rel="noopener noreferrer">🔔</a>
</div>
<div class="links-group">
<a href="https://youtube.com/" rel="noopener noreferrer">youtube</a>
<br/>
<a class="font-sm" href="https://studio.youtube.com/" rel="noopener noreferrer">studio</a>
</div>
<a href="https://twitter.com/" rel="noopener noreferrer">twitter</a>
<div class="mx-2"></div>
<a href="/page2.html">[Page 2]</a>
<a href="/page3.html">[Page 3]</a>
</div>
</fieldset>
<fieldset>
<legend>Dev & Blogs</legend>
<div class="links">
<div class="links-group">
<a href="https://github.com/" rel="noopener noreferrer">github</a>
<a class="font-sm" href="https://github.com/notifications?query=is%3Aunread" rel="noopener noreferrer">🔔</a>
</div>
<a href="https://news.ycombinator.com/" rel="noopener noreferrer">Hacker News</a>
<div class="links-group">
<a href="https://habr.com/top/" rel="noopener noreferrer">habr</a>
<br/>
<a class="font-sm" href="https://habr.com/ru/all/" rel="noopener noreferrer">all</a>
<a class="font-sm" href="https://habr.com/ru/hub/java/" rel="noopener noreferrer">java</a>
</div>
<div class="links-group">
<a class="font-sm" href="https://www.reddit.com/r/programming" rel="noopener noreferrer">r/programming</a>
<br/>
<a class="font-sm" href="https://www.reddit.com/r/linux/" rel="noopener noreferrer">r/linux</a>
</div>
</div>
</fieldset>
<fieldset>
<legend>Documentation</legend>
<div class="links">
<a href="https://developer.android.com/reference/" rel="noopener noreferrer">Android</a>
<a href="https://en.cppreference.com/w/" rel="noopener noreferrer">C++</a>
<a href="https://golang.org/pkg/" rel="noopener noreferrer">Go</a>
<div class="links-group">
<a href="https://docs.oracle.com/en/java/javase/15/docs/api/" rel="noopener noreferrer">Java</a>
<br/>
<a class="font-sm" href="https://search.maven.org/" rel="noopener noreferrer">maven</a>
</div>
<div class="links-group">
<a href="https://doc.rust-lang.org/std/" rel="noopener noreferrer">Rust</a>
<br/>
<a class="font-sm" href="https://play.rust-lang.org/" rel="noopener noreferrer">playground</a>
</div>
<div class="links-group">
<a class="font-sm" href="https://core.telegram.org/bots/api" rel="noopener noreferrer">Telegram Bots API</a>
<br/>
<a class="font-sm" href="tg://resolve?domain=botfather" rel="noopener noreferrer">@BotFather</a>
</div>
</div>
</fieldset>
</div>
</div>
<span id="time">00:00</span>
<script src="newtab.js"></script>
</body>
</html>