This repository was archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·134 lines (133 loc) · 4.26 KB
/
index.html
File metadata and controls
executable file
·134 lines (133 loc) · 4.26 KB
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
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="theme-color" content="#000000" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="format-detection" content="telephone=no" />
<link rel="apple-touch-icon" href="./hyf.png" />
<link rel="shortcut icon" type="image/png" href="./hyf.png" />
<title>HackYourRepo</title>
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,700"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
</head>
<body>
<header class="main-header">
<nav class="main-nav">
<h4>HYF Repositories</h4>
<select name="repo-selection" id="select">
<option value="">repo1</option>
<option value="">repo2</option>
<option value="">repo3</option>
</select>
</nav>
</header>
<div class="main-container">
<section class="output-repos">
<div class="repo-result shadow p-3 mb-1 bg-white rounded">
<table>
<table>
<tr>
<td><span>Repository:</span></td>
<td>SampleRepo1</td>
</tr>
<tr>
<td><span>Description:</span></td>
<td>This repository is meant to be a sample</td>
</tr>
<tr>
<td><span>Fork:</span></td>
<td>5</td>
</tr>
<tr>
<td><span>Updated:</span></td>
<td>2020-05-27 12:00:00</td>
</tr>
</table>
</table>
</div>
<div class="repo-result shadow p-3 mb-1 bg-white rounded">
<table>
<tr>
<td><span>Repository:</span></td>
<td>AndAnotherOne</td>
</tr>
<tr>
<td><span>Description:</span></td>
<td>Another sample repo! Can you believe it?</td>
</tr>
<tr>
<td><span>Fork:</span></td>
<td>9</td>
</tr>
<tr>
<td><span>Updated:</span></td>
<td>2020-05-27 12:00:00</td>
</tr>
</table>
</div>
<div class="repo-result shadow p-3 mb-1 bg-white rounded">
<table>
<tr>
<td><span>Repository:</span></td>
<td>HYF-Is-The-Best</td>
</tr>
<tr>
<td><span>Description:</span></td>
<td>
This repository contains all things HackYourFuture. That's
because HYF is amazing!!!!
</td>
</tr>
<tr>
<td><span>Fork:</span></td>
<td>5142</td>
</tr>
<tr>
<td><span>Updated:</span></td>
<td>2020-05-27 12:00:00</td>
</tr>
</table>
</div>
</section>
<section class="output-contributors">
<div class="contributors-result">
<ul>
<li class="shadow-sm p-3 mb-1 bg-light rounded">
Contributors
</li>
<li class="repo-result shadow p-3 mb-1 bg-white rounded">
<img src="./hyf.png" />
<a class="ml-3 text-primary">Tarek</a>
<span class="badge badge-secondary float-right">45</span>
</li>
<li class="repo-result shadow p-3 mb-1 bg-white rounded">
<img src="./hyf.png" />
<a class="ml-3 text-primary">Tarek</a>
<span class="badge badge-secondary float-right">45</span>
</li>
</ul>
</div>
</section>
</div>
<script src="./script.js"></script>
</body>
</html>