-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (42 loc) · 1.88 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
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,width=device-width" />
<meta property="og:title" content="Hacker News Client" />
<meta property="og:description" content="Hacker News Client with rich previews" />
<meta property="og:image" content="https://richhn.herokuapp.com/app/metaTagImage.png" />
<title>Hacker News Client</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/semantic.min.css">
<link rel="stylesheet" href="/app/app.css">
</head>
<body>
<div class="ui container">
<div class="ui basic segment">
<h3 class="ui center aligned orange icon header">
<i class="hacker news icon"></i>
Hacker News
</h3>
</div>
<div class="ui basic segment">
<h2 class="ui center aligned orange icon header" id="loader">
<i class="ui loading square outline icon"> </i>
</h2>
<div class="ui three stackable cards" id="topStoriesList">
<!-- Story cards will be added via javascript -->
</div>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/semantic.min.css"></script>
<script type="text/javascript" src="/app/app.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-85973326-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>