-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
129 lines (108 loc) · 4.66 KB
/
index.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!doctype html>
<html lang="fr">
<head>
<title>Nouvel onglet</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css">
<!-- Primary Meta Tags -->
<meta name="title" content="Nouvel onglet personnalisé - Artivain">
<meta name="description"
content="Nouvel onglet personnalisé par Artivain pour remplacer celui par défaut de Chrome, qui n'est pas assez personnalisable.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://artivain.github.io/newtab/">
<meta property="og:title" content="Nouvel onglet personnalisé - Artivain">
<meta property="og:description"
content="Nouvel onglet personnalisé par Artivain pour remplacer celui par défaut de Chrome, qui n'est pas assez personnalisable.">
<meta property="og:image" content="preview.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://artivain.github.io/newtab/">
<meta property="twitter:title" content="Nouvel onglet personnalisé - Artivain">
<meta property="twitter:description"
content="Nouvel onglet personnalisé par Artivain pour remplacer celui par défaut de Chrome, qui n'est pas assez personnalisable.">
<meta property="twitter:image" content="preview.jpg">
<meta http-equiv="Cache-control" content="max-age=31536000">
<link rel="shortcut icon" href="icons/artivain.svg" type="image/svg+xml">
</head>
<body>
<nav id="menu" class="navbar navbar-expand navbar-dark bg-dark justify-content-center">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="https://artivain.com">
<img class="icon" src="icons/artivain.svg" alt="Logo Artivain" title="Artivain">
</a>
</li>
</ul>
</nav>
<div id="container" class="container-fluid">
<div>
<!-- content -->
<div id="clock"></div>
<form class="form-group" action="https://google.ca/search">
<div class="input-group">
<input type="text" class="form-control" placeholder="Rechercher" name="q" required autocomplete="off">
<div class="input-group-append">
<button class="btn btn-secondary" type="submit">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-search"
viewBox="0 0 16 16">
<path
d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z" />
</svg>
</button>
</div>
</div>
</form>
</div>
</div>
<nav id="menu-bottom" class="navbar navbar-expand navbar-dark bg-dark justify-content-center">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="https://youtube.com">
<img class="icon" src="icons/youtube.svg" alt="Logo YouTube" title="YouTube">
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://music.youtube.com">
<img class="icon" src="icons/youtube-music.svg" alt="Logo YouTube Music" title="YouTube Music">
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://app.plex.tv/">
<img class="icon" src="icons/plex.svg" alt="Logo Plex" title="Plex">
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://photos.google.com">
<img class="icon" src="icons/google-photos.svg" alt="Logo Google Photos" title="Google Photos">
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://drive.google.com">
<img class="icon" src="icons/google-drive.svg" alt="Logo Google Drive" title="Google Drive">
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com">
<img class="icon" src="icons/github.svg" alt="Logo Github" title="Github">
</a>
</li>
</ul>
</nav>
<div class="gh-link position-fixed bottom-0 end-0 p-3">
<a href="https://github.com/Artivain/newtab" target="_blank" rel="noopener noreferrer" class="text-light">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-info-circle-fill"
viewBox="0 0 16 16">
<path
d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z" />
</svg>
</a>
</div>
<script src="scripts.js"></script>
</body>
</html>