-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (22 loc) · 907 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Tabbit - Reddit with tabs</title>
<meta name="description" content="Tabbit - A tab based, webapp layout for reddit with minimal vim-like navigation keybindings"/>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</head>
<body>
<div class="row" id="feed">
<div class="col s12">
<ul class="tabs" id="navList"></ul>
</div>
</div>
<script type="module" src="js/nav.js"></script>
<script type="module" src="js/feed.js"></script>
</body>
</html>
<!-- TODO Adding tab code sample https://jqueryui.com/tabs/#manipulation -->