Skip to content

Commit

Permalink
Updated teams page with me and Andrew's pics/bios
Browse files Browse the repository at this point in the history
Made all team page pictures square (and touched up jared's lighting)

Aligned contact buttons on teams page

Disabled /form page link ("Contact") in header.html
  • Loading branch information
jpaav committed Jul 31, 2018
1 parent b8c8428 commit 02c8729
Show file tree
Hide file tree
Showing 12 changed files with 108 additions and 10 deletions.
32 changes: 32 additions & 0 deletions .idea/OrganizationWebsite-ClientFacing.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion resources/templates/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<a class="nav-link" href="/team">Leadership Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/form">Contact</a>
<a class="nav-link disabled" href="#">Contact</a>
</li>
</ul>
</div>
Expand Down
39 changes: 32 additions & 7 deletions resources/templates/team.html
Original file line number Diff line number Diff line change
@@ -1,43 +1,68 @@
{% extends 'header.html' %}
{% load static %}

{% block content %}

<div class="container main-body-team" style="padding-top:5%">
<div class="container main-body-team" style="padding-top: 5%;">
<h1 class="display-1 headline">Leadership Team</h1>

<div class="row">
<div class="column">
<div class="card">
<img src="/static/img/armaan.jpg" alt="Armaan Goel" style="width:100%">
<img class="portrait" src="/static/img/armaan.jpg" alt="Armaan Goel">
<div class="container">
<h2 style="margin-top:1rem;">Armaan Goel</h2>
<p class="title">President &amp; Founder</p>
<p style="padding-bottom:8%">Armaan got the idea for the club when visiting a “civic hackathon” in Indianapolis: a 24 hour event where teams compete to find coding solutions to community problems. Besides Code for Change, he also participates in the HiLite Newspaper, Techounds Robotics Team, Science Olympiad, and Boy Scouts. In his free time he likes to program, bike and go camping.</p>
<div class="text-center"><a href="mailto:armaangoel78@gmail.com" class="btn btn-primary btn-xl rounded-pill2 mt-1">Contact</a></div>
<div class="contact-button"><a href="mailto:armaangoel78@gmail.com" target="_blank" class="btn btn-primary btn-xl rounded-pill2 mt-1">Contact</a></div>
</div>
</div>
</div>

<div class="column">
<div class="card">
<img src="/static/img/evan.jpg" alt="Evan Kenyon" style="width:100%">
<img class="portrait" src="/static/img/evan.jpg" alt="Evan Kenyon">
<div class="container">
<h2 style="margin-top:1rem;">Evan Kenyon</h2>
<p class="title">Vice President</p>
<p>Evan assisted in starting the club when Armaan told him about the Civic Hackathons. Evan worked at an electronic health records company over this past summer doing coding. He also is vice president of Red Cross Club, troubleshoot lead of Computer Building Club and he is participating in the school robotics team and Model UN. In his free time, he likes to hang out with his friends and family.</p>
<div class="text-center"><a href="mailto:evan.m.kenyon@gmail.com" class="btn btn-primary btn-xl rounded-pill2 mt-1">Contact</a></div>
<div class="contact-button"><a href="mailto:evan.m.kenyon@gmail.com" target="_blank" class="btn btn-primary btn-xl rounded-pill2 mt-1">Contact</a></div>
</div>
</div>
</div>

<div class="column">
<div class="card">
<img src="/static/img/jared.jpg" alt="Jared Stigter" style="width:100%">
<img class="portrait" src="/static/img/jared.jpg" alt="Jared Stigter">
<div class="container">
<h2 style="margin-top:1rem;">Jared Stigter</h2>
<p class="title">Chief Technology Officer</p>
<p>When Armaan Goel approached Jared with the idea of a club dedicated to serving the community and a possible project to start, Jared jumped on board. He has been programming for several years and has developed a variety of skills. Besides Code For Change, Jared works part time and continues to develop other projects on the side, and enjoys computers, games, and movies.</p>
<div class="text-center"><a href="mailto:jaredstigter@gmail.com" class="btn btn-primary btn-xl rounded-pill2 mt-1">Contact</a></div>
<div class="contact-button"><a href="mailto:jaredstigter@gmail.com" target="_blank" class="btn btn-primary btn-xl rounded-pill2 mt-1">Contact</a></div>
</div>
</div>
</div>

<div class="column">
<div class="card">
<img class="portrait img-responsive" src="/static/img/joe.jpg" alt="Joseph Paavola">
<div class="container">
<h2 style="margin-top:1rem;">Joseph Paavola</h2>
<p class="title">Lead Developer</p>
<p>Joe was offered a position when the club was first founded but declined due to prior commitments. When his schedule cleared up he immediately started to help build Code for Change's first major project: Sapphire. When he isn't debugging a Code For Change project, Joe competes in Science Olympiad, goes backpacking with his family and plays music with his brother.</p>
<div class="contact-button"><a href="mailto:joepaavola@gmail.com" target="_blank" class="btn btn-primary btn-xl rounded-pill2 mt-1">Contact</a></div>
</div>
</div>
</div>

<div class="column">
<div class="card">
<img class="portrait img-fluid" src="/static/img/andrew.jpg" alt="Andrew Sleugh">
<div class="container">
<h2 style="margin-top:1rem;">Andrew Sleugh</h2>
<p class="title">PR Director</p>
<p>Andrew has worked with Code For Change since it first began. When it became clear that better communication and public relations would be vital to the club's development, Andrew stepped up to bat. He has been invaluable in keeping everyone in the loop and has helped keep the club growing. He is also a co-founder of the Carmel Quiz Bowl Chapter, Planetarium club leader and works at Laser flash in his spare time. </p>
<div class="contact-button"><a href="mailto:andrewsleugh@gmail.com" target="_blank" class="btn btn-primary btn-xl rounded-pill2 mt-1">Contact</a></div>
</div>
</div>
</div>
Expand Down
25 changes: 23 additions & 2 deletions static/css/team.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

.column {
float: left;
width: 33.3%;
width: 20%;
margin-bottom: 16px;
padding: 0 8px;
}
Expand All @@ -16,7 +16,8 @@

/* Add some shadows to create a card effect */
.card {
margin: 3%
margin: 3%;
height: 875px;
}

/* Some left and right padding inside the container */
Expand All @@ -28,6 +29,21 @@
color: grey;
}

.portrait {
width: 100%;
height: auto;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}

.contact-button {
position: absolute;
bottom: 0;
left: 0;
right: 0;
text-align: center;
}

.button {
border: none;
outline: 0;
Expand Down Expand Up @@ -56,6 +72,11 @@

.service-icon{background-color:#fff;color:#1d809f;height:7rem;width:7rem;display:block;line-height:7.5rem;font-size:2.25rem;box-shadow:0 3px 3px 0 rgba(0,0,0,.1)}

@media (min-width: 992px) {
.main-body-team {
max-width: 90%;
}
}

@media (min-width: 1200px) {
.main-body {
Expand Down
Binary file added static/img/andrew.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/armaan.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/evan.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/jared.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/joe.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 02c8729

Please sign in to comment.