-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (41 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>trending repository on github</title>
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<link rel="stylesheet" href="./style.css">
</link>
</head>
<body id="body">
<!-- Header -->
<div class="header">
<h1 class="header__title">Trending</h1>
<h4 class="header__subtitle">See what the GitHub community is most excited about today.</h4>
</div>
<div id="dashboard" class="dashboard">
<div id="filter-panel" class="dashboard__filterPanel">
<div id="filter-language" class="dashboard__filterLanguage">
<div>Language:</div>
<!-- Language Menu -->
<div id="filter-language-menu" class="dashboard__filterLanguageMenu">
<button id="language-menu-button" class="dashboard__languageMenuButton">
Any
</button>
<div id="language-menu" class="dashboard__languageMenu dashboard__languageMenu--hidden">
<div class="Menu__textBoxOfMenu">Select a language</div>
</div>
</div>
</div>
</div>
<!-- Repositories List -->
<div id="repository-list" class="filterWrapper__list"></div>
</div>
<script src="./js/FilterPanel.js"></script>
<script src="./js/list.js"></script>
<script src="./js/repo-items.js"></script>
<script src="./js/get-unique-items.js"></script>
<script src="./js/filter-language.js"></script>
<script src="./js/init.js"></script>
</body>
</html>