-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.html
executable file
·101 lines (100 loc) · 5.61 KB
/
info.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Free Code Camp Indy - Info</title>
<!-- CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- JS -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" charset="utf-8"></script>
<script src="js/myjs.js" charset="utf-8"></script>
<!-- Fonts -->
</head>
<body>
<div class="wrapper">
<nav class="include" data-include="header">
</nav>
<div id="content" >
<!-- place your <div class="include" data-include=""></div> here and copy the html into the views folder. Name it something like "page"-"component" -->
<div class="container">
<h1 class="text-center">Info</h1>
<h3><em>"We are a community organization aimed at teaching, encouraging, and supporting people who want to learn to web development."</em></h3>
<hr>
<h2 class="text-center">Community leaders</h2>
<div class="col-sm-4 leader">
<img src="images/leaders/gwenOptimized.jpg" alt="" class="community">
<h2 class="text-center">Gwen Faraday</h2>
<p class="text-center">Camp Site Leader</p>
</div>
<div class="col-sm-4 leader">
<img src="images/leaders/jaredOptimized.jpg" alt="" class="community">
<h2 class="text-center">Jared Wilcurt</h2>
<p class="text-center">Co-Organizer</p>
</div>
<div class="col-sm-4 leader">
<img src="images/leaders/mattOptimized.jpg" alt="" class="community">
<h2 class="text-center">Matthew Allbright</h2>
<p class="text-center">Website Project Leader</p>
</div>
</div><!-- end community leaders -->
<hr>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1>Our Sponsors</h1>
</div>
<div class="col-sm-4">
<img src="images/sponsors/bureau.png" alt="">
</div>
<div class="col-sm-4">
<img src="images/sponsors/ion-three.png" alt="">
</div>
<div class="col-sm-4">
<img src="images/sponsors/hatch.png" alt="">
</div>
</div>
<div class="row">
<div class="col-sm-4 col-sm-offset-2">
<img src="images/sponsors/cyberia.png" alt="">
</div>
<div class="col-sm-4">
<img src="images/sponsors/iron-yard.png" alt="">
</div>
</div>
</div><!-- end sponsors -->
<hr />
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="text-center">FreeCodeCamp Code of Conduct</h1>
</div>
<div class="row code-of-conduct">
<div class="col-md6 col-md-offset-1">
<p>Free Code Camp is a friendly place to learn to code. We’re committed to keeping it that way.</p>
<p>By using Free Code Camp, you agree that you'll follow this code of conduct.</p>
<p>In short: Be nice. <strong>No harassment, trolling, or spamming.</strong></p>
<ul>
<li><strong>Harassment</strong> includes sexual language and imagery, deliberate intimidation, stalking, unwelcome sexual attention, libel and any malicious hacking or social engineering. Free Code Camp should be a harassment-free experience for everyone, regardless of gender, gender identity and expression, age, sexual orientation, disability, physical appearance, body size, race, national origin, or religion (or lack thereof).</li>
<li><strong>Trolling</strong> includes posting inflammatory comments to provoke an emotional response or disrupt discussions.</li>
<li><strong>Spamming</strong> includes posting off-topic messages to disrupt discussions, promote a product, or solicit donations.</li>
</ul>
<p>If you see someone harass, troll, or spam anywhere on Free Code Camp Indy's online media (Discord, YouTube, Facebook, etc.), notify us in via email: <strong>[email protected]</strong> preferably with a screen shot of the offense. Our team will take any action we deem appropriate, up to and including banning the offender from Free Code Camp Indy.</p>
<p>Also, no bots are allowed in our chat rooms or on our forum without prior written permission.</p>
<p>If you have questions about this code of conduct, email us at <strong><a href="mailto:[email protected]" target="_top">[email protected]</a></strong>.</p>
</div>
</div><!-- end code-of-conduct -->
</div>
<!-- flexbox load from meetup API
****************************************
Here is where the code would go Larry
****************************************
-->
</div><!-- end freeCodeCamp Code of Ethics -->
</div> <!-- end content -->
<footer class="include" data-include="footer"></footer>
</div>
</body>
</html>