Skip to content
This repository was archived by the owner on Feb 29, 2020. It is now read-only.

Commit f2902ae

Browse files
committed
Add workshops and their descriptions to the page.
1 parent cb049df commit f2902ae

File tree

3 files changed

+58
-3
lines changed

3 files changed

+58
-3
lines changed

_config.yml

+31
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,37 @@ event:
7474
It'll bring together students for a fun weekend of invention, hacking, and learning.{::nomarkdown}<br />{:/}
7575
Brought to you by [The University of Edinburgh Embedded and Robotics Society](http://ears-edi.com/).
7676
77+
workshops:
78+
- name: "Introduction to Electronics"
79+
time: "12.00 - 13.00"
80+
level: "No prior experience required."
81+
description: "Do you want to learn the basics of building circuits? We will take you over the fundamentals of electronics concepts, explain how components such as resistors or transistors work and finally get you to build some circuits of your own!"
82+
- name: "MiRo"
83+
time: "12.00 - 13.00"
84+
level: "Knowledge of programming and command line"
85+
description: "Are you interested in working on a MiRo project during the hackathon? Come to this workshop which will give an introduction to MiRo, all of his sensors/actuators and explain the basics of how it works. You will learn how to use the simulator to introduce the basics of programming MiRos with ROS, and finally show how to port the programmed behaviours over to the real robot"
86+
- name: "Introduction to micro:bit"
87+
time: "14.00 - 15.00"
88+
level: "Entry level, no prior experience required. If you have never programmed before it would be very beneficial for you to come."
89+
description: "A workshop aimed at people with no previous programming experience. We will take you from complete basics to explain the fundamental concepts of programming and then show you how to apply them to hardware by making a simple game on a Microbit"
90+
- name: "GitHub workshop"
91+
time: "15.00 - 16.00"
92+
level: "Entry level, no prior experience required."
93+
description: "During this workshop delivered to you by GitHub you will learn the basics of version control. We will take you from the basics of Git all the way through to showcasing your projects on GitHub."
94+
- name: "Line Follower"
95+
time: "15.30 - 17.00"
96+
level: "Basic knowledge of electronics, Arduino and programming programming"
97+
description: "Build your own line follower robot using an Arduino. We will take you through the basics of motor control and sensor readings so that you can build your own line following robot and watch it go!"
98+
99+
- name: "Introduction to FPGA"
100+
time: "17.00 - 18.00"
101+
level: "Knowledge of Python strongly recommended"
102+
description: "A beginner's intro to the world of FPGA programming! Come along to learn how to set up a PYNQ FPGA board and test out several simple projects in Jupyter Notebook"
103+
- name: "Introduction to IoT"
104+
time: "19.00 - 20.00"
105+
level: "Basic knowledge of Python recommended."
106+
description: "During this workshop we will dive into the world of IoT technologies. We will explain how the IoT systems work and take you through creating you own simple IoT application"
107+
77108
# Info Sections
78109
sponsors:
79110
# tier1 is top, anycont is bottom (refer to sponsorship packages)

css/original.css

+6-3
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ section.about p {
261261
/*
262262
* FAQ Section
263263
*/
264-
.faq, .hardwarehack {
264+
.faq, .hardwarehack, .workshops{
265265
background-color: #fff;
266266
/* margin-top: 15px; */
267267
padding: 50px 0;
@@ -272,14 +272,16 @@ section.about p {
272272
.sponsors h1,
273273
.venue h1,
274274
.hardwarehack h1,
275-
.schedule h1 {
275+
.schedule h1,
276+
.workshops h1 {
276277
font-family: 'Montserrat';
277278
font-weight: 700;
278279
margin: 30px 0;
279280
}
280281

281282
.faq .question h2,
282-
.hardwarehack .question h2 {
283+
.hardwarehack .question h2,
284+
.workshops h2 {
283285
font-family: 'Montserrat';
284286
font-weight: 700;
285287
font-size: 24px;
@@ -298,6 +300,7 @@ section.about p {
298300

299301
.faq .question p,
300302
.hardwarehack .question p,
303+
.workshops p,
301304
.special-image-desc {
302305
font-family: 'Montserrat';
303306
font-size: 18px;

index.html

+21
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ <h2>{{ item.question }}</h2>
3838
</div>
3939
</section>
4040

41+
4142
<section id="schedule" class="schedule">
4243
<h1 class="text-center">Schedule</h1>
4344
<div class="container">
@@ -124,6 +125,26 @@ <h1 class="text-center">Schedule</h1>
124125
</div>
125126
</section>
126127

128+
<section class="workshops">
129+
<div class="container">
130+
<h1 class="text-center">Workshops</h1>
131+
<div class="row">
132+
<div class="col-xs-12 col-sm-8 col-sm-offset-2">
133+
{% for workshop in site.event.workshops %}
134+
<div class="col-xs-12">
135+
<div class="item">
136+
<h2 class="text-center">{{ workshop.name }}</h2>
137+
<hr>
138+
<p class="workshop-time"><b>Time:</b> {{ workshop.time }}</p>
139+
<p class="workshop-level"><b>Level:</b> {{ workshop.level }}</p>
140+
<p class="workshop-description"><b>Description: </b>{{ workshop.description }}</p>
141+
</div>
142+
</div>
143+
{% endfor %}
144+
</div>
145+
</div>
146+
</div>
147+
</section>
127148

128149
<section id="venue" class="venue">
129150
<h1 class="text-center">Venue Details</h1>

0 commit comments

Comments
 (0)