-
Notifications
You must be signed in to change notification settings - Fork 3
/
trainingtrack.html
34 lines (33 loc) · 1.01 KB
/
trainingtrack.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
---
layout: default
title: "JSConf US 2015 Training"
id: training
---
<div class='container'>
<h2>Training Track</h2>
<br/>
<br/>
<br/>
<div class='speaker'>
<p>The Training Track at JSConf 2015 is designed to provide value to any and everyone who attends. Starting with the basics and working our way into more advanced topics, we'll cover a broad variety of topics, offering something for everyone. From the fundamentals of JS to the future that is ES2015, come check out what some of the best educators in our field have to say.</p>
</div>
{% for session in site.data.training %}
<div class='col-md-12'>
<div class='speaker clearfix' id='{{session.id}}'>
<div class='pull-right socialmedia'>
{{session.start}}
</div>
<div class='name'>
<h3>{{session.title}}</h3>
</div>
<div class='talk'>
<div class='title'>Level: {{session.level}}</div>
</div>
<div class='bio'>
<!-- <div class='title'>Description</div>-->
{{session.desc | markdownify}}
</div>
</div>
</div>
{% endfor %}
</div>