-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
322 lines (318 loc) · 20.3 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
<!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="">
<meta name="author" content="">
<title>Bluegrass Developers Guild</title>
<link rel="icon" type="image/ico" href="img/favicon.ico">
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<!-- Theme CSS -->
<link href="css/grayscale.min.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Begin Jotform Code -->
<script src="https://form.jotform.com/static/feedback2.js"></script>
<script>
new JotformFeedback({
type: 2,
width: 700,
height: 620,
fontColor: "#000",
background: "#42DCA3",
isCardForm: false,
formId: "231035903729051",
buttonText: "Join Our Slack!",
buttonSide: "left",
buttonAlign: "center",
base: "https://form.jotform.com/",
});
</script>
<script type="text/javascript">
var ifr = document.getElementById("lightbox-231035903729051");
if (ifr) {
var src = ifr.src;
var iframeParams = [];
if (window.location.href && window.location.href.indexOf("?") > -1) {
iframeParams = iframeParams.concat(window.location.href.substr(window.location.href.indexOf("?") + 1).split('&'));
}
if (src && src.indexOf("?") > -1) {
iframeParams = iframeParams.concat(src.substr(src.indexOf("?") + 1).split("&"));
src = src.substr(0, src.indexOf("?"))
}
iframeParams.push("isIframeEmbed=1");
ifr.src = src + "?" + iframeParams.join('&');
}
window.handleIFrameMessage = function(e) {
if (typeof e.data === 'object') { return; }
var args = e.data.split(":");
if (args.length > 2) { iframe = document.getElementById("lightbox-" + args[(args.length - 1)]); } else { iframe = document.getElementById("lightbox"); }
if (!iframe) { return; }
switch (args[0]) {
case "scrollIntoView":
iframe.scrollIntoView();
break;
case "setHeight":
iframe.style.height = "620px";
iframe.style.minHeight = "620px";
break;
case "collapseErrorPage":
if (iframe.clientHeight > window.innerHeight) {
iframe.style.height = window.innerHeight + "px";
}
break;
case "reloadPage":
window.location.reload();
break;
case "loadScript":
if( !window.isPermitted(e.origin, ['jotform.com', 'jotform.pro']) ) { break; }
var src = args[1];
if (args.length > 3) {
src = args[1] + ':' + args[2];
}
var script = document.createElement('script');
script.src = src;
script.type = 'text/javascript';
document.body.appendChild(script);
break;
case "exitFullscreen":
if (window.document.exitFullscreen) window.document.exitFullscreen();
else if (window.document.mozCancelFullScreen) window.document.mozCancelFullScreen();
else if (window.document.mozCancelFullscreen) window.document.mozCancelFullScreen();
else if (window.document.webkitExitFullscreen) window.document.webkitExitFullscreen();
else if (window.document.msExitFullscreen) window.document.msExitFullscreen();
break;
}
var isJotForm = (e.origin.indexOf("jotform") > -1) ? true : false;
if(isJotForm && "contentWindow" in iframe && "postMessage" in iframe.contentWindow) {
var urls = {"docurl":encodeURIComponent(document.URL),"referrer":encodeURIComponent(document.referrer)};
iframe.contentWindow.postMessage(JSON.stringify({"type":"urls","value":urls}), "*");
}
};
window.isPermitted = function(originUrl, whitelisted_domains) {
var url = document.createElement('a');
url.href = originUrl;
var hostname = url.hostname;
var result = false;
if( typeof hostname !== 'undefined' ) {
whitelisted_domains.forEach(function(element) {
if( hostname.slice((-1 * element.length - 1)) === '.'.concat(element) || hostname === element ) {
result = true;
}
});
return result;
}
};
if (window.addEventListener) {
window.addEventListener("message", handleIFrameMessage, false);
} else if (window.attachEvent) {
window.attachEvent("onmessage", handleIFrameMessage);
}
</script>
<!-- End Jotform Code -->
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top">
Bluegrass Developers Guild
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#about">About</a>
</li>
<li>
<a class="page-scroll" href="#conduct">Code of Conduct</a>
</li>
<li>
<a class="page-scroll" href="#contact">Contact</a>
</li>
<li>
<a class="page-scroll" href="#companies">Companies</a>
</li>
<li>
<a class="page-scroll" href="bookclub.html">Book Club</a>
</li>
<li>
<a href="javascript:void( window.open( 'https://form.jotform.com/231035903729051', 'blank', 'scrollbars=yes, toolbar=no, width=700, height=500' ) ) "> Join Us! </a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Intro Header -->
<header class="intro">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="brand-heading">Bluegrass Developers Guild</h1>
<p class="intro-text">By Developers for a Better Tech Community</p>
<a href="#about" class="btn btn-circle page-scroll">
<i class="fa fa-angle-double-down animated"></i>
</a>
</div>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>About Us</h2>
<p>
<h3>We are a collective of software engineers, programmers, researchers, data scientists, and designers in the state of Kentucky.</h3></p>
<p>Our purpose is to promote a sense of community among local technology organizations and their members. We seek to improve communication between leaders, centralize efforts, improve culture, and to support our members in a way that strengthens our community and promotes the common good.</p>
</div>
</div>
</section>
<!-- Conduct Section -->
<section id="conduct" class="content-section text-center">
<div class="download-section">
<div class="container">
<div class="col-lg-8 col-lg-offset-2">
<h2>Read our <a href="#portfolioModal1" class="portfolio-link" data-toggle="modal">Code of Conduct</a></h2>
<br>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>Contact Bluegrass Developers Guild</h2>
<p>If you are interested in being a part of our community, fill out the form below and we will send you an invite to the Slack space.</p>
<ul class="list-inline banner-social-buttons">
<li>
<a href="javascript:void( window.open( 'https://form.jotform.com/231035903729051', 'blank', 'scrollbars=yes, toolbar=no, width=700, height=500' ) ) " class="btn btn-default btn-lg portfolio-link"><i class="fa fa-slack fa-fw"></i> <span class="network-name">Join Our Slack</span></a>
</li>
<li>
<a href="https://github.com/bluegrass-devs" target="_blank" class="btn btn-default btn-lg"><i class="fa fa-github fa-fw"></i> <span class="network-name">Github</span></a>
</li>
<li>
<a href="https://www.bluegrassdevs.org/rss/bdg_rss.xml" target="_blank" class="btn btn-default btn-lg"><i class="fa fa-rss fa-fw"></i> <span class="network-name">News Feed</span></a>
</li>
<li>
<a href="https://www.meetup.com/The-Bluegrass-Developers-Guild/" target="_blank" class="btn btn-default btn-lg"><i class="fa fa-meetup" aria-hidden="true"></i> <span class="network-name">Meetup</span></a>
</li>
</ul>
</div>
</div>
</section>
<!-- Companies Section -->
<section id="companies" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>Companies</h2>
<p>The bluegrass has many talented developers working for some great companies locally and remote.</p>
<h3>Local</h3>
<ul id="company_local" class="list-inline banner-social-buttons">
</ul>
<br/>
<h3>Remote</h3>
<ul id="company_remote" class="list-inline banner-social-buttons">
</ul>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container text-center">
<h6>Copyright © 2017-2022 Bluegrass Developers Guild</h6>
</div>
</footer>
<!-- jQuery -->
<script src="vendor/jquery/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<!-- Theme JavaScript -->
<script src="js/grayscale.min.js"></script>
<!-- load company info -->
<script src="js/companyData.js"></script>
<script src="js/companies.js"></script>
</body>
<!-- Portfolio Modal 1 -->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Code of Conduct</h2>
<p>The Bluegrass Developers Guild is a group that welcomes anyone to come and learn, share, network and collaborate our skills and knowledge. This Code of Conduct outlines our expectations for all those who participate in our community, as well as the consequences for unacceptable behavior.</p>
<p>We invite all those who participate in our community to help us create safe and positive experiences for everyone.</p>
<p><strong>tl;dr: Be excellent to each other.</strong></p>
<h2 id="expected-behavior">Expected Behavior</h2>
<ul>
<p>Participate in an authentic and active way. In doing so, you contribute to the health and longevity of this community.</p>
<p>Exercise consideration and respect in your speech and actions.</p>
<p>Attempt collaboration before conflict.</p>
<p>Refrain from demeaning, discriminatory, or harassing behavior and speech.</p>
<p>Be mindful of your surroundings and of your fellow participants. Alert community leaders if you notice a dangerous situation, someone in distress, or violations of this Code of Conduct, even if they seem inconsequential.</p>
</ul>
<h2 id="anti-harassment-policy">Anti-harassment Policy</h2>
<p>The Bluegrass Developers Guild is dedicated to providing a harassment-free experience for all, regardless of gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, age or religion. We do not tolerate harassment of anyone in any form. Sexual language and imagery is not appropriate for any venue, including talks and chat channels. Individuals violating these rules may be sanctioned or expelled from the event or communication channel at the discretion of our organizers.</p>
<p>Harassment includes verbal comments that reinforce social structures of domination related to gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, age, religion; sexual images in public spaces; deliberate intimidation; stalking; following; harassing photography or recording; sustained disruption of talks or other events; inappropriate physical contact; and unwelcome sexual attention. Participants asked to stop any harassing behavior are expected to comply immediately.</p>
<h2 id="violence-free-community">Violence-Free Community</h2>
<p>The Bluegrass Developers Guild strictly prohibits violence, threats of violence, and any other behavior that jeopardizes or harms the safety and wellbeing of our community members or their property. This includes aggression, intimidation, belligerence, and disruptive behavior.</p>
<h2 id="technology-agnosticism">Technology Agnosticism</h2>
<p>Our mission is to bridge communities surrounding a multitude of technologies. Whether discussing programming languages, platforms, libraries, tools, or editors; our organizers strive to be open minded and positive toward all, and we expect that you'll do the same.</p>
<h2 id="privacy-concerns">Privacy Concerns</h2>
<p>Your privacy is important to us. While photographs may be taken during events and can be shared by members on group's Meetup page, social media, etc., no photograph shall be used for commercial purposes without verbal and/or written consent of the attendees. If you wish to take photographs of the group, announce your intent in advance, so members may opt-out. If a group photograph is taken, your participation will serve as your agreement to the use of such a photograph for promotional purposes. If you are uncomfortable having your photograph shared, please let us know. Taking photographs of members who do not wish to be photographed falls under the anti-harrassment policy.
</p>
<p>In public communication channels and events, please remember there is no reasonable expectation of privacy. Please be aware that any information you divulge in these arenas is deemed public information and is not protected.</p>
<h2 id="consequences-of-unacceptable-behavior">Consequences Of Unacceptable Behavior</h2>
<p>Unacceptable behavior from any community member, including sponsors and those with decision-making authority, will not be tolerated. If a participant engages in policy-violating behavior, organizers may take any action they deem appropriate, including warning the offender or expulsion from the community without warning (and without refund in the case of a paid event).</p>
<h2 id="if-you-witness-or-are-subject-to-unacceptable-behavior">If You Witness or Are Subject to Unacceptable Behavior</h2>
<p>If you are being harassed, notice that someone else is being harassed, or have any other concerns, please contact an organizer immediately.</p>
<p>Organizers will be happy to help participants contact security or local law enforcement, provide escorts, or otherwise assist those experiencing harassment to feel safe. We value your participation in our community.</p>
<h2 id="scope">Scope</h2>
<p>We expect all community participants (contributors, paid or otherwise; sponsors; and other guests) to abide by this Code of Conduct in all community venues—online and in-person—as well as in all one-on-one communications pertaining to community business.</p>
<p>The Bluegrass Developers Guild adopted this code of conduct from the <a href="http://suncoast.io/conduct/" target="_blank">Suncoast Developers Guild</a> who used the <a href="http://geekfeminism.wikia.com/wiki/Conference_anti-harassment/Policy" target="_blank">anti-harassment policy</a> created by the <a href="https://adainitiative.org" target="_blank">Ada Initiative</a> (and other volunteers) as well as <a href="https://github.com/rubyberlin/code-of-conduct" target="_blank">Ruby Berlin's Code of Conduct</a> and the <a href="http://citizencodeofconduct.org" target="_blank">Citizen Code of Conduct</a> as starting points.</p>
<p>This Code of Conduct is licensed under a <a href="http://creativecommons.org/licenses/by-sa/4.0/" target="_blank">Creative Commons Attribution-ShareAlike</a> license.</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</html>