-
Notifications
You must be signed in to change notification settings - Fork 10
/
about.html
108 lines (83 loc) · 3.92 KB
/
about.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
---
layout: default
title: About Us
stylesheet: team.css
permalink: /about/
ogImage: team-banner.jpg
---
{% include pageHeader.html
img="AboutUsHEADER2.jpg"
header="About Us"
text="Blockchain Institute is a 501(c)(3) Public Charity that provides education focused on blockchain, cryptocurrency, and distributed ledger technology."
%}
<section class="ourMission">
<div class="row">
<div>
<span class="missionTeal">
We offer online and in-person courses to help onboard those that are curious and help reduce the barriers for everyone to enter the blockchain ecosystem.
</div>
</div>
</section>
<section class="header">
<div class="row">
<div class="col-sm-6">
<p>Education is the best tool to light the way forward. We invite you to join us as we show the world why
blockchain is here to stay.</p>
<p>Blockchain Institute was founded in June of 2018 to promote the adoption,
development, and use of blockchain technology by providing free education to the public. Throughout the
first few months of our existence, <a href="/events" target="_blank">we taught workshops and attended
conferences</a> such as <a href="/events/girlcon_2018" target="_blank">Girlcon</a>, <a
href="/events/loyalty_live_2018" target="_blank">Loyalty Live</a>, and <a href="/events/VOB_2018"
target="_blank">Voice of Blockchain</a>. Our first online courses were made available in February
2019. Later that year, on March 25th, we were officially granted status as a <span
class="no-wrap">501(c)(3)</span> Public Charity.</p>
</div>
<div class="col-sm-6">
<p>In August 2019, we moved into Hackhaus, a co-working space located in the Uptown neighborhood of
Chicago. The new location gave us the ability to host in-person courses and meetups. Our first in-person
class, the Crypto Curious Course, was previewed in November 2019 and premiered on January 25th, 2020. We launched our ambassador program in June of 2020 to offer people around the world the tools to teach this new technology to others.
</p>
<p>In 2021 we unveiled our Demystifying DeFi Course to explain the traditional financial services that have come to the decentralized world. We also started regularly teaching our courses to an international audience over webinars.</p>
<p>We will continue to add to our collection of online and in-person classes and look for new ways to
provide blockchain education to all.</p>
</div>
</div>
</section>
<section class="team" id="teamContainer">
<div class="row teamRow"><h1>Our Team</h1></div>
{% for person in site.team %}
{% include person.html
name=person.name
role=person.role
bio=person.summary
headshot=person.headshot
type="team"
%}
{% endfor %}
</section>
<section class="board" id="boardContainer">
<div class="row boardRow"><h1>Our Board</h1></div>
{% for person in site.board %}
{% include person.html
name=person.name
role=person.role
bio=person.summary
headshot=person.headshot
type="board"
%}
{% endfor %}
</section>
<script>
window.onload = function () {
reorderTeam('person_team', 'teamContainer');
reorderTeam('person_board', 'boardContainer')
}
function reorderTeam(teamName, container) {
var team = document.getElementsByClassName(teamName)
var teamContainer = document.getElementById(container)
for (var i = team.length; i >= 0; i--) {
teamContainer.appendChild(team[Math.random() * i | 0]);
}
}
</script>
{% include getInvolved.html %}