forked from pusher-community/realtime-twitter-search-vuejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Vue Twitter Streaming</title>
<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/all-the-things.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body class="blue-gradient-background">
<div class="navbar navbar-inverse navbar-default" role="navigation">
<div class="container navbar-container">
<div class="navbar-header">
<div class="navbar-brand">
<a href="/">
<img class="full-logo" src="img/pusher-logo.png" width="111" height="37" />
</a>
</div>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a class="signup-link" href="https://pusher.com/signup">Create a Free Account</a>
</li>
</ul>
</div>
</div>
</div>
<div id="app">
<app-component></app-component>
</div>
<script src="bundle.js"></script>
</body>
</html>