-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
21 lines (20 loc) · 997 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A simple Hacker News implementation in the NX framework">
<meta name="author" content="Miklos Bertalan">
<title>Hacker News implemented in NX</title>
<!-- the animate.css animation/keyframe collection is used to simplify animations in the app -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- this is the bundled script (the app's code and NX bundled together) -->
<script src="bundle.js" async></script>
<!-- this style is used to hide content until NX is fully loaded -->
<style>:unresolved { display: none; }</style>
<body>
<!-- this is our root component, it is registered in /components/hackerNews -->
<hacker-news></hacker-news>
</body>
</html>