This repository has been archived by the owner on Jan 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
user.html
46 lines (43 loc) · 1.8 KB
/
user.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, width=device-width">
<title>SC4 | Viewing User</title>
<link rel="stylesheet" href="styles/main.less">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div id="app">
<div class="top">
<div class="user">
<img class="user__pfp ripple"><span id="userName" class="user__name"></span>
</div>
<div class="user-about">
<div class="user-about__title">About</div>
<div class="user-about__box" id="bio"></div><br>
<div class="user-about__title">What I'm working on</div>
<div class="user-about__box" id="status"></div>
</div>
</div>
<div class="error">
<span class="error__msg" id="errMsg">Couldn't load projects</span>
</div>
<div class="slideout slideout--out" id="slider">
<h2 class="slideout__title">Comments</h2>
<div class="comments" id="commentSection">
</div>
<div class="centered">
<a href="#" class="centered__button ripple" id="viewMore">View more</a>
</div>
</div>
<a class="fab fab--right ripple" id="toggleComments"><img src="./asset/icon-comment.svg" class="fab__icon"></a>
<!-- Loader by Jeremie Gaffarel, https://codepen.io/gaffareljeremie -->
<svg class="spinner" width="65px" height="65px" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="spinner__circle" fill="none" stroke-width="0.4em" stroke-linecap="round" cx="33" cy="33" r="30"></circle>
</svg>
<script src="./cordova.js" charset="utf-8"></script>
<script src="scripts/user.js" charset="utf-8"></script>
<script src="scripts/theme.js" charset="utf-8"></script>
</body>
</html>