Skip to content

Commit 299c56c

Browse files
author
Jer'Maine Montiel, Jr
committed
added about page stating our mission
1 parent ca0c752 commit 299c56c

File tree

7 files changed

+94
-2
lines changed

7 files changed

+94
-2
lines changed

about.hbs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="{{lang}}">
3+
{{> core/head}}
4+
<body class="{{body_class}}">
5+
{{> core/header}}
6+
<div class="about-template">
7+
<div class="wrapper">
8+
<h1 class="title">DAT<span>CODE</span>, INC.</h1>
9+
<p>Started in 2016, DATCODE is a collective of Black technologists residing all over the world. We're a community that is vibrant, inclusive, and just enjoys learning and making stuff. We love to share our knowledge with each other, comment on our shared experiences, and encourage each other to Do The Most with the skills we possess.</p>
10+
<p>Our mission is to provide a safe space for ourselves and people that are looking for community as they grow. We provide support for those just beginning in the tech space, or those that are still searching for their place in it. Our community is ever-expanding through initiatives looking to serve its members: collaborative projects on our <a href="https://www.github.com/gitdatcode">Github</a> have helped members get jobs; resources we share in our Slack group are collected to a database, and we make them <a href="https://resources.datcode.io">available publicly</a> for anyone to search; we provide a job board channel to share any leads we have come across; and our <a href="/blog">blog</a> is where we share our stories and how-tos on various topics.</p>
11+
<p>We want DATCODE to be the premier community for Black technologists across the galaxy, promoting a never-ending thirst for knowledge, boundless curiosity, and ethical future-making. <a href="/sign-up">Join</a> the Intergalactic Black Tech Collective, and grow with us!</p>
12+
<p>To contact, email us at <b>[email protected]</b>.</p>
13+
</div>
14+
</div>
15+
{{> core/footer}}
16+
{{> core/foot}}
17+
</body>
18+
</html>

assets/css/spectre.css

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/spectre.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/sass/_about.scss

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
.about-template {
2+
padding: 80px 20px;
3+
font-size: 2.2rem;
4+
line-height: 1.6em;
5+
6+
.title {
7+
font-size: 4em;
8+
text-align: center;
9+
line-height: 1em;
10+
text-transform: uppercase;
11+
font-family: 'Gilmer';
12+
font-weight: 800;
13+
14+
span {
15+
font-family: 'Gilmer-Outline';
16+
}
17+
18+
@media screen and (max-width: 640px) {
19+
font-size: 2.5em;
20+
}
21+
}
22+
23+
b { color: map-get($s5-map--color, dc-purple); }
24+
25+
a {
26+
color: map-get($s5-map--color, dc-white);
27+
font-weight: 700;
28+
word-break: break-word;
29+
box-shadow: inset 0 -1px 0 map-get($s5-map--color, dc-purple);
30+
}
31+
32+
@media screen and (max-width: 640px) {
33+
font-size: 1.9rem;
34+
}
35+
}

assets/sass/spectre.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
@import "home";
77
@import "list";
88
@import "post";
9-
@import "sign-up";
9+
@import "sign-up";
10+
@import "about";

partials/core/footer.hbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<a href="http://github.com/gitdatcode" rel="noopener" target="_blank"><i class="fab fa-github"></i></a>
2222
<a href="http://instagram.com/designdatcode" rel="noopener" target="_blank"><i class="fab fa-instagram"></i></a>
2323
</nav>
24+
<a href="/about">ABOUT US</a> <br />
2425
<a href="/DatCodeCommunityCodeofConduct.pdf">CODE OF CONDUCT</a>
2526
</div>
2627
<div class='footer-credits'>

routes.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ routes:
22
/: home
33
/sign-up/: sign-up
44
/code-of-conduct/: code-of-conduct
5+
/about/: about
56
collections:
67
/blog/:
78
permalink: /{slug}/

0 commit comments

Comments
 (0)