-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
74 lines (71 loc) · 2.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Friendly LinkTree</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css"
integrity="sha512-b2QcS5SsA8tZodcDtGRELiGv5SaKSk1vDHDaQRda0htPYWZ6046lr3kJ5bAAQdpV2mmA/4v0wQF9MyU6/pDIAg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="styles.css" />
<script
src="https://kit.fontawesome.com/739e3ae0dc.js"
crossorigin="anonymous"
></script>
</head>
<body class="fs-1 m-0">
<div class="container-fluid">
<div class="row">
<div class="col-md-3 ms-auto me-auto">
<div class="card bg-transparent vh-100">
<div class="card-header text-center">
<a id="brand" class="text-decoration-none link-light" target="_blank" href="https://github.com/tinyplayerss">
<i class="fa fa-github me-0"></i>
<span class="">Github</span>
<span class="fs-5 border-bottom border-danger link-dark align-top">tinyplayerss</span>
</a>
<div id="githubProfileContainer" class="text-center">
<!-- GitHub profile image and username will be dynamically added here using JavaScript -->
</div>
</div>
<div class="card-body overflow-x-hidden overflow-y-auto">
<div class="link-container" id="linkContainer">
<!-- Links will be dynamically added here using JavaScript -->
<ul class="list-unstyled position-relative mt-5"></ul>
</div>
</div>
</div>
</div>
</div>
<!-- Link container -->
</div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"
integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/js/bootstrap.min.js"
integrity="sha512-WW8/jxkELe2CAiE4LvQfwm1rajOS8PHasCCx+knHG0gBHt8EXxS6T6tJRTGuDQVnluuAvMxWF4j8SNFDKceLFg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script
src="script.js"
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
</body>
</html>