forked from nodeschool/dallas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
130 lines (118 loc) · 5.62 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!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="Nodeschool Dallas Chapter">
<meta name="author" content="@leongaban & @paulinhorocha">
<link rel="icon" href="favicon.ico">
<title>Nodeschool dallas</title>
<link type="text/plain" rel="author" href="http://nodedalas.io/humans.txt" />
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,900' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Source+Code+Pro:300,400,600' rel='stylesheet' type='text/css'>
<link href="assets/css/lib/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/nodedallas.css" rel="stylesheet">
<script src="assets/js/plugins/particles.min.js"></script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="canvas-wrapper">
<div class="container">
<div class="hello">
<h2 class="noselect">Welcome to</h2>
<h1 class="noselect">Nodeschool Dallas</h1>
<div class="logo">
<img class="img-responsive" src="assets/images/nodeschool-dallas.png" alt="Nodedallas"/>
</div>
<div class="message_block">
<p><a href="http://www.meetup.com/Nodeschool-Dallas/events/218168772/">Our first meetup - Jan 28th in Addison!</a></p>
<p><a href="https://github.com/nodeschool/discussions">Node School Discussion Rules</a></p>
</div>
<a href="https://gitter.im/nodeschool/dallas?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge"><img src="assets/images/gitter.svg"/></a>
<div class="code_block">
<h2 class="noselect">Command lines to get started:</h2>
<p>sudo npm install learnyounode -g<br/>
learnyounode</p>
</div>
<div class="bitcoin_support">
<p>Donate via Bitcoin!</p>
<p>146n6b6QGUW1KrdJBnQej7BU19mus9oppv</p>
</div>
</div>
<footer>
<p>The Dallas chapter of <a href="http://nodeschool.io/" title="nodeschool">Nodeshool.io</a></p>
<p>Our <a href="https://github.com/nodeschool/dallas" title="Nodedallas Github">Github</a></p>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="assets/js/lib/bootstrap.min.js"></script>
<script type="text/javascript">
particlesJS('canvas-wrapper', {
particles: {
color: '#CD89AE',
shape: 'circle',
opacity: 1,
size: 5,
size_random: true,
nb: 120,
line_linked: {
enable_auto: true,
distance: 175,
color: '#fff',
opacity: 0.5,
width: .5,
condensed_mode: {
enable: false,
rotateX: 600,
rotateY: 600
}
},
anim: {
enable: true,
speed: 1
}
},
interactivity: {
enable: false,
mouse: {
distance: 250
},
detect_on: 'canvas',
mode: 'grab',
line_linked: {
opacity: 0.6
},
events: {
onclick: {
push_particles: {
enable: true,
nb: 4
}
}
}
},
retina_detect: true
});
</script>
<script type="text/javascript">
(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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-56442460-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>