-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
66 lines (55 loc) · 3.31 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Twitter + Socket.io + Google Maps API ⚡️</title>
<!-- META TAGS -->
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-touch-fullscreen" content="yes" />
<meta name="HandheldFriendly" content="true" />
<meta name="robots" content="all">
<meta name="author" content="Thulioph">
<meta name="rating" content="general">
<meta name="distribution" content="global">
<meta name="copyright" content="Thulio Philipe - Todos os direitos reservados">
<!-- FACEBOOK -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://twitter-realtime.herokuapp.com">
<meta property="og:title" content="Twitter Real-time">
<meta property="og:image" content="https://github.com/thulioph/twitter-realtime/blob/master/example.png">
<meta property="og:description" content="Twitter + Socket.io + Google Maps API ⚡️">
<!-- TWITTER -->
<meta name="twitter:card" value="summary_large_image">
<meta name="twitter:card" value="summary">
<meta name="twitter:creator" value="@thulioph_">
<meta name="twitter:site" value="@thulioph_">
<meta name="twitter:title" content="Twitter Real-time">
<meta name="twitter:description" content="Twitter + Socket.io + Google Maps API ⚡️">
<meta name="twitter:image:src" content="https://github.com/thulioph/twitter-realtime/blob/master/example.png">
<!-- CSS -->
<link rel="stylesheet" href="styles/main.css">
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,700">
</head>
<body ng-app="twRealtime">
<a id="fork-github" class="fork-github" href="https://github.com/thulioph/twitter-realtime" target="_blank">
<img src="https://camo.githubusercontent.com/652c5b9acfaddf3a9c326fa6bde407b87f7be0f4/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6f72616e67655f6666373630302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png">
</a>
<div ng-view=""></div>
<script src="/socket.io/socket.io.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCbdqR42D5rVc4PpbDLADV879aD3aH5vyA"></script>
<!-- Libs -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.6/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.6/angular-animate.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.6/angular-resource.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.6/angular-route.min.js"></script>
<!-- Angular -->
<script src="scripts/app.js"></script>
<script src="scripts/services/index.js"></script>
<script src="scripts/controllers/index.js"></script>
<!-- Twitter button -->
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</body>
</html>