Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hall of fame [WIP] #589

Open
wants to merge 15 commits into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
1 change: 0 additions & 1 deletion _data/packages.2018.yaml → _data/packages-2018.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
seeking to involve more people in the world of technology.
years:
- 2018

#- name: Gold
# title: Gold Sponsors
# sponsors:
Expand Down
77 changes: 77 additions & 0 deletions _data/teams-2018.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
- name: $we init
id: we-init
students: Akshita & Rahmeen
project: Probot
location: New Delhi, India

- name: 101 Days of Summer
id: 101-days-of-summer
students: Nupur & Paavini
project: Servo
location: New Delhi, India

- name: Akaringular
id: akaringular
students: Rachael & StellaMaris
project: EBWiki
location: Nairobi, Kenya

- name: Barcelona Duo
id: barcelona-duo
students: Amalia & Lori
project: Exercism
location: Barcelona, Spain

- name: Brazilian housewives coding
id: brazilian-housewives-coding
students: Camila & Stefanni
project: Public Lab
location: Vancouver, Canada

- name: DelSquared
id: delsquared
students: Arushi & Sharmistha
project: Tessel
location: New Delhi, India

- name: DV Team
id: dv-team
students: Diana & Violeta
project: LivingStyleGuide
location: Barcelona, Spain

- name: GirlsCode MK
id: girlscode-mk
students: Eva & Georgina
project: Bahmi
location: Milton Keynes, UK

- name: Popcorn
id: popcorn
students: Arati & Jessica
project: Nextcloud
location: Berlin, Germany

- name: PotatoCode
id: potatocode
students: Alina & Sabine
project: stretchly
location: Amsterdam, Netherlands

- name: Rubies
id: rubies
students: Atibhi & Prateksha
project: if me
location: Bangalore, India

- name: Sectumsempra
id: sectumsempra
students: Avneet & Rupal
project: Chapel
location: New Delhi, India

- name: Sunshine
id: sunshine
students: Gyujin & Sujin
project: Babel
location: Seoul, South Korea
25 changes: 25 additions & 0 deletions _layouts/hall-of-fame.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>

{% include head.html %}

</head>
<body class="{{ page.class }}">
<header id="header" class="header" role="banner">

{% include navigation.html %}

</header>
<main role="main" class="content">
<div class="container">
{{ content }}
</div>
</main>
{% include footer.html %}

</body>
</html>
34 changes: 34 additions & 0 deletions assets/stylesheets/hall-of-fame.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
.main-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px;
}

.stats-grid {
display: grid;
grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
grid-gap: 10px;
}

.special-moments {
display: grid;
grid-template-columns: minmax(50%, 1fr) 1fr;
grid-gap: 10px;
}

.special-moments-child img, .main-grid img {
width: 100%;
height: 100%;
object-fit: cover;
}

.stats-grid-child {
align-self: center;
text-align: center;
}

.statistics {
color: $red;
font-size: $font-size-h2;
font-weight: 700;
}
1 change: 1 addition & 0 deletions assets/stylesheets/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
@import "sponsors";
@import "team";
@import "blog";
@import "hall-of-fame";

@import "layouts/article";
@import "layouts/sidebar";
Expand Down
112 changes: 112 additions & 0 deletions hall-of-fame/2018.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
---
layout: hall-of-fame
title: Hall of Fame 2018
class: page page-hall-of-fame
current: 2018
permalink: hall-of-fame/2018/
---

<h1 class="text-center">{{page.title}}</h1>

<h3>Teams</h3>
<div class="main-grid">
{% for team in site.data.teams-2018 %}
<div class="main-grid-child">
<h4 class="color-red">{{ team.name }}</h4>
<article>
<strong>Students</strong>: {{ team.students }}</br>
<strong>Project</strong>: {{ team.project }}</br>
<strong>Location</strong>: {{ team.location }}</br>
</article>
</div>
{% endfor %}
</div>

<h3>Partners</h3>
<div class="main-grid">
{% for package in site.data.packages-2018 %}
{% for sponsor in package.sponsors %}
{% if sponsor.partner == true %}
<div class="sponsors-grid-child">
<a href="{{sponsor.url}}">{{ sponsor.name }}</a>
</div>
{% endif %}
{% endfor %}
{% endfor %}
</div>

<h3>Statistics</h3>
<div class="stats-grid">
<div class="stats-grid-child">
<div class="statistics">392</div>
applications received
</div>
<div class="stats-grid-child">
<div class="statistics">13</div>
sponsored teams
</div>
<div class="stats-grid-child">
<div class="statistics">$80,516.00</div>
crowdfunded
</div>
<div class="stats-grid-child">
<div class="statistics">50</div>
coaches
</div>
<div class="stats-grid-child">
<div class="statistics">12</div>
supervisors
</div>
</div>

<h3>Platinum sponsors</h3>
<div class="main-grid">
{% for package in site.data.packages-2018 %}
{% if package.name contains 'Platinum' %}
{% for sponsor in package.sponsors %}
<div class="sponsors-grid-child">
<a href="{{sponsor.url}}">{{ sponsor.name }}</a>
</div>
{% endfor %}
{% endif %}
{% endfor %}
</div>

<h3>Special moments</h3>

<h4>Reactions</h4>

<h4>#ThankfulForRGSoC</h4>
<div class="special-moments">
<div class="special-moments-child"><p>We’re here to stay and to keep creating real change, by welcoming and training women and non-binary individuals to code and advocate for a diverse and inclusive Open Source community. This is why, in 2018, we mobilised our community to share with us their experiences of our program and let us know why they're #ThankfulForRGSoC.</p>
<p>We received an overwhelming amount of messages from our community on why RGSoC was important to them and shared some of these “#ThankfulForRGSoC stories” from our supporters, participants, coaches, mentors and organisers.</p>
</div>
<div class="special-moments-child">
<img src="/img/blog/2018/2018-04-06-rgsoc-teams-2013-2017_thankfulforrgsoc-stories.png">
</div>
</div>

<h4>OSS Project Spotlight</h4>
<div class="special-moments">
<div class="special-moments-child">
<p>
In 2018, we also launched a small poll on twitter to see if our audience would be interested in knowing more about Open Source projects, diversity and inclusion-related initiatives and best practices on how to contribute to open source software. The response was really positive and in June we kicked off the OSS Project Spotlight, a series of content dedicated to showcasing open source projects — starting with the projects participating in RGSoC 2018.
</p>
</div>
<div class="special-moments-child">
</div>
</div>
<div class="main-grid">
<div class="main-grid-child">
<img src="/img/blog/2018/2018-07-05-oss-projects-spotlight-part3-servo.png">
</div>
<div class="main-grid-child">
<img src="/img/blog/2018/2018-06-11-oss-project-spotlight-part1-tessel.png">
</div>
<div class="main-grid-child">
<img src="/img/blog/2018/2018-08-08-oss-projects-spotlight-part4-livingstyleguide.png">
</div>
</div>

<h3>Coaching companies</h3>