-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>Hacker News</title>
<link rel="icon" type="image" href="./assets/ycombi-icon.png" />
<link rel="stylesheet" type="text/css" href="./dist/styles.css" />
</head>
<body>
<div class="app-container">
<div class="app-header">
<header class="header">
<div class="flex">
<span class="header-title">
<img class="header-logo" src="./assets/ycombi-icon.png" />
Hacker News
</span>
<a class="header-link" href="#/">Top</a>
<a class="header-link" href="#/new">New</a>
<a class="header-link" href="#/ask">Ask</a>
<a class="header-link" href="#/show">Show</a>
<a class="header-link" href="#/favourites"> Favourites</a>
</div>
</header>
</div>
</div>
<div class="route-container">
<div class="router-outlet"></div>
</div>
<script type="module" src="./app.js"></script>
<script src="//unpkg.com/navigo@6"></script>
</body>
</html>