-
Notifications
You must be signed in to change notification settings - Fork 3
/
january_2019_curriculum.html
63 lines (61 loc) · 2.84 KB
/
january_2019_curriculum.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
---
layout: default
title: Workshops
regenerate: true
---
<section id="content" class="container">
{% include section-header.html title="Workshops" color="primary" %}
<div class="row">
<div class="col-md-10 offset-md-1">
<!--Each day of the Bootcamp is divided into four workshop sessions--two in the
morning and two in the afternoon, with breaks between each session.-->
Workshops build on each other such that successive workshops use skills developed
in earlier ones. All participants attend workshops on core skills,
then choose which skills they wish to develop further through advanced workshops.
<!-- The following table lists all of the topics that will be covered
over the course of the Bootcamp, with links to additional information, workshop
materials, and the schedule. -->
</p>
</div>
</div>
<!--div class="row m-b-3">
<div class="col-md-6 offset-md-3">
<table class="table table-striped" id="top">
{% for topic in site.data.workshops | sort: 'sort' %}
<tr>
<td>{{topic.title}}</td>
<td><a href="#{{ topic.link | slugify }}" class="page-scroll">details</a></td>
<td><a href="{{ topic.repo }}" target="_blank">repo</a></td>
{% if topic.more_info_link != '' %}
<td><a href="{{ topic.more_info_link }}" target="_blank">more info</a></td>
{% endif %}
<td><a href="{{ '/schedule/#{{topic.session}}' | prepend: site.baseurl }}">schedule</a></td>
</tr>
{% endfor %}
</table>
</div>
</div-->
{% comment %}
{% include section-header.html title="Workshop Details" color="secondary" %}
{% endcomment %}
<div class="row">
<div class="col-md-8 offset-md-2">
{% for topic in site.data.workshops | sort: 'sort' %}
<div class="card" id="{{ topic.link | slugify }}">
{% comment %}<img class="card-img-top" src="{{ '/images/header.jpg" alt="Card image cap' | prepend: site.baseurl }}">{% endcomment %}
<div class="card-block">
<div class="btn-group btn-group-sm pull-right" role="group" aria-label="{{topic.title}}">
<a href="{{ "/schedule.html" | site.baseurl}}" class="btn btn-primary"><i class="fa fa-calendar"></i></a>
<a href="{{ topic.more_info_link }}" class="btn btn-primary page-scroll"><i class="fa {{topic.icon}}"></i></a>
<!-- <a href="#page-top" class="btn btn-primary page-scroll"><i class="fa fa-chevron-up"></i></a -->
<a href="{{topic.repo}}" class="btn btn-primary"><i class="fa fa-github"></i></a>
</div>
<h4 class="card-title"><a
href="{{ topic.link | slugify | prepend: '#' | prepend: site.baseurl }}">{{topic.title}}</a></h4>
<p class="card-text">{{ topic.description }}</p>
</div>
</div>
{% endfor %}
</div>
</div>
</section>