This repository was archived by the owner on Apr 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.28 KB
/
index.html
File metadata and controls
41 lines (38 loc) · 1.28 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
<!DOCTYPE html>
<html class="theme--dark" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>SC4 | Home</title>
<link rel="stylesheet" type="text/css" href="https://at.alicdn.com/t/font_o5hd5vvqpoqiwwmi.css">
<link rel="stylesheet" href="/less/index.less">
</head>
<body>
<nav class="navbar">
<a href="https://scratch.mit.edu/">
<img class="navbar__logo" src="/assets/scratch.png">
</a>
<div class="navbar__menu">
<a href="#" class="navbar__link">Explore</a>
<a href="#" class="navbar__link">Ideas</a>
</div>
<div class="navbar__user-links">
<a href="#" class="js-dark-mode-toggle"><i class="feather icon-moon"></i></a>
<a href="#"><i class="feather icon-folder"></i></a>
<a href="#"><i class="feather icon-message-square"></i></a>
<a href="#"><i class="feather icon-plus-square"></i></a>
</div>
</nav>
<main>
<div class="accountbar">
<div class="accountbar__signedin">
<i class="feather icon-user-x"></i>
<div class="accountbar__signedin-info">
You're not signed in.
</div>
</div>
<a href="#" class="account-switcher">Switch Accounts <i class="feather icon-chevron-down"></i></a>
</div>
</main>
<script src="/scripts/index.js"></script>
</body>
</html>