-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteaching.html
147 lines (138 loc) · 3.62 KB
/
teaching.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
---
layout: default
title: Federico Galetto - Teaching
keywords: teaching
active: teaching
---
<div class="row">
<div class="col">
<section id="current">
<div class="alert alert-warning alert-dismissible fade show" role="alert">
Students currently enrolled in classes may find up to date information on <a href="https://www.csuohio.edu/center-for-elearning/blackboard-login" target="_blank">Blackboard</a>.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">Currently teaching</h5>
</div>
<table class="table notop table-sm mb-0">
<tbody>
<tr><td>-</td></tr>
</tbody>
</table>
</div>
</section>
<section id="mentoring">
<div class="card">
<div class="card-header">
<h5 class="mb-0">Students mentored</h5>
</div>
<table class="table notop table-sm mb-0">
<tbody>
<tr>
<td style="width:15%"><span class="font-weight-bold">Name</span></td>
<td><span class="font-weight-bold">Project</span></td>
<!--<td style="width:40%"><span class="font-weight-bold">Project title</span></td>-->
<td style="width:15%"><span class="font-weight-bold">Term</span></td>
</tr>
{% assign mentees = site.data.mentoring.csu | sort: 'date' | reverse %}
{% for item in mentees %}
<tr>
<td>{{ item.name }}</td>
<td>{{ item.title }} <span class="text-muted">({{ item.course }})</span></td>
<!--<td>{{ item.title }}</td>-->
<td>{{ item.term }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</section>
<section id="past">
<div class="card">
<div class="card-header">
<h5 class="mb-0">Cleveland State University</h5>
</div>
<table class="table notop table-sm mb-0">
<tbody>
{% assign csulist = site.data.taught.csu %}
{% for item in csulist %}
<tr><td><a href="files/syllabi/{{ item.file }}">
{{ item.title }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">McMaster University</h5>
</div>
<table class="table notop table-sm mb-0">
<tbody>
<tr>
<td>MATH 1AA3 - Calculus II / MATH 1ZB3 - Engineering Mathematics II-A</td>
</tr>
<tr>
<td>MATH 3V03 - Graph Theory</td>
</tr>
<tr>
<td>MATH 3B03 - Geometry</td>
</tr>
<tr>
<td>MATH 702 - Algebra II (Graduate)</td>
</tr>
<tr>
<td>MATH 2R03 - Linear Algebra II</td>
</tr>
<tr>
<td>MATH 1A03 - Calculus for Science I</td>
</tr>
</tbody>
</table>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">Queen's University</h5>
</div>
<table class="table notop table-sm mb-0">
<tbody>
<tr>
<td>MATH/MTHE 281 - Introduction to Real Analysis</td>
</tr>
<tr>
<td>APSC 171 - Section 900 - Calculus I</td>
</tr>
<tr>
<td>APSC 171 - Calculus I</td>
</tr>
</tbody>
</table>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">Northeastern University</h5>
</div>
<table class="table notop table-sm mb-0">
<tbody>
<tr>
<td>MATH 1215 - Mathematical Thinking</td>
</tr>
<tr>
<td>MATH 1341 - Calculus 1 for Science and Engineering</td>
</tr>
<tr>
<td>MTH U131 - Calculus for Business and Economics</td>
</tr>
<tr>
<td>Calculus 3 (recitation section)
</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
</div>