-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
35 lines (33 loc) · 1.77 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 lang="en">
<head>
<title>AngularJS and ProcessingJS Playing Nicely Together</title>
<meta name="title" content="AngularJS and ProcessingJS Playing Together"></meta>
<meta name="content" content="How to make AngularJS and ProcessingJS play nicely together."></meta>
<meta name="keywords" content="AngularJS ProcessingJS Javascript"></meta>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="http://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet" type="text/css"></link>
<link href="/css/font-awesome.min.css" rel="stylesheet" type="text/css"></link>
<link href="/css/style.css" rel="stylesheet" type="text/css"></link>
</head>
<body>
<div id="main" ng-view ng-cloak></div>
<script type="text/javascript" data-main="app/main.js" src="/app/require.js"></script>
<hr />
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'angularprocessingdemo'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
window.setTimeout(function() {
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
}, 3000);
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</body>
</html>