-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.html
37 lines (35 loc) · 1.31 KB
/
schedule.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
---
layout: page
title: Schedule
weight: 0
---
<section class="main-container text">
<div class="main">
<p> Please note that the items on this page are subject to change.</p>
<table class="table">
<tr>
<th>Date</th>
<th>Topic</th>
<th>Subtopic</th>
<th>Section</th>
<th>Readings</th>
<th>Beyond Section</th>
<th>HW Release</th>
<th>HW Deadline</th>
</tr>
{% for lecture in site.data.all.lectures %}
<tr class='{{lecture.type|default: ""}}'>
<td> {{site.data.all.dates[forloop.index]}} </td>
<td> {{lecture.topic | default: ""}} </td>
<td> {{lecture.subtopic | default: ""}}</td>
<td> {{lecture.section | default: ""}}</td>
<td> {{lecture.readings | default: ""}}</td>
<td> {{lecture.beyond | default: ""}}</td>
<td> {{lecture.release | default: ""}}</td>
<td> {{lecture.dl | default: ""}}</td>
</tr>
{% endfor %}
</table>
<!--*SB refers to <a href="{{ site.baseurl }}/resources#sb">Sutton and Barto 2018, Reinforcement Learning: An Introduction</a>.-->
</div>
</section>