forked from pioneers/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·82 lines (71 loc) · 3.29 KB
/
index.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
---
layout: main
hero-message: <span style="font-weight:600">PIONEERS <span id="pkmn">IN</span> ENGINEERING</span><br><span style="font-size:.5em; font-weight:400">Bringing STEM education to the Bay Area</span>
title: Pioneers in Engineering
hero-button: Join Us!
hero-button-url: ../get-involved/join-staff.html
---
<script src="assets/javascripts/banner.js"></script>
<div class="home">
<div id ="announcements">
<h2>ANNOUNCEMENTS</h2>
<div class="row">
<div class="col-md-6">
<h3>Robotics Competition</h3>
<p>The PiE 2017 Robotics Competition season is now in full swing! Information about the season and resources for participating students can be found on the PiE RC page!</p>
<a class="btn btn-primary" href="../compete/rc-spring.html" role="button">More RC info!</a>
</div>
<div class="col-md-6">
<h3>Worksessions</h3>
<p>Still interested in joining PiE staff? Stop by one of our worksessions - Wednesdays from 7 - 9 PM or Saturdays from 1 - 3 PM at O'Brien Hall!</p>
<a class="btn btn-info" href="../get-involved/join-staff.html" role="button">More Staff info!</a>
</div>
</div>
</div>
<br/>
<div class="row" id="pie-description"> <!-- First Row of Images, meant for immediate description of what PiE is/does -->
<div class="col-sm-4">
<h2>Competition</h2>
<img src="assets/images/comp.JPG">
<p>Bringing high school students together to challenge themselves in new ways through robotics</p>
</div>
<!-- <div class="vertical-border visible-lg-inline-block visible-md-inline-block"></div> -->
<div class="col-sm-4">
<h2>Outreach</h2>
<img src="assets/images/prepbot.jpg">
<p>Connecting mentors to Bay Area high school students through PIE PREP and promoting STEM awareness throughout the community</p>
</div>
<!-- <div class="vertical-border visible-lg-inline-block visible-md-inline-block"></div> -->
<div class="col-sm-4">
<h2>Development</h2>
<img src="assets/images/solderingSquare.jpg">
<p>Developing our own software and hardware to give students the best experience for $100 per team</p>
</div>
</div>
<div class="row" id="stats"> <!-- Second Row, meant to demonstrate the impact that PiE has had on the Bay Area/Berkeley -->
<hr class="horizontal-border">
<h2>Pioneers in Engineering has served more than</h2>
<h2><strong>30</strong> Schools • <strong>700</strong> High School Students • <strong>350</strong> Berkeley Students</h2>
<!-- <img src="assets/images/sprocket.png" id="sprocket"> -->
</div>
<div class="row" id="news"> <!-- Third Row, meant for more specific information that is not needed by all visitors (i.e. Schedule, Blog) -->
<hr class="horizontal-border">
<div class="col-md-5">
<h2>Schedule</h2>
{% include schedule.html %}
</div>
<div class="col-md-7">
<h2>News Updates</h2>
{% for post in site.posts limit:5%}
{% unless post.hide %}
<div class="post-row">
<h4 class="title">
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a> | {{ post.date | date: '%B %d, %Y' }}
</h4>
<div class="excerpt">{{ post.excerpt }}</div>
</div>
{% endunless %}
{% endfor %}
</div>
</div>
</div>