-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathteaching.html
More file actions
75 lines (66 loc) · 2.6 KB
/
teaching.html
File metadata and controls
75 lines (66 loc) · 2.6 KB
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
---
title: Teaching
layout: default
permalink: /teaching/
nav_id: Teaching
nav_weight: 5
---
<h1 class="mb-3">Current teaching</h1>
{% include current_teaching.html %}
<!-- Calendly inline widget begin -->
<!-- <div class="calendly-inline-widget" data-url="https://calendly.com/lap5r?hide_landing_page_details=1&hide_gdpr_banner=1" style="min-width:320px;height:630px;"></div>
<script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js" async></script> -->
<!-- Calendly inline widget end -->
<hr class="mt-4" />
<h2 class="mt-3 mb-4">Previous teaching</h2>
<div class="my-row-zebra" style="margin: 0px 15px">
{% for post in site.posts %} {% if post.categories contains "teaching" %}
<div class="row" style="padding: 10px">
<div class="col-md-2 h5">{{post.semester}}</div>
<div class="col-md-10 h5">
{% unless post.no-page %}<a
href="{{site.url}}{{post.url}}"
class="highlighted-item"
>{% endunless %}{{post.title}}{% unless post.no-page %}</a
>{% endunless %} {% if post.syllabus-html %} •
<a
href="{{post.syllabus-html | replace: '__STORAGE_URL__', site.storage_url }}"
>Syllabus</a
>{% endif %} {% if post.syllabus %} •
<a
href="{{post.syllabus | replace: '__STORAGE_URL__', site.storage_url }}"
>{% if post.syllabus-html %}(PDF for printing){% else %}Syllabus{% endif %}</a
>{% endif %} {% if post.web-course-github %} •
<a
href="{{ post.web-course-github | replace: '__SITE_URL__', site.url }}"
>Course page on GitHub</a
>{% endif %} {% if post.web-course-external %} •
<a
href="{{ post.web-course-external | replace: '__SITE_URL__', site.url }}"
>Course webpage</a
>{% endif %}
</div>
</div>
{% endif %} {% endfor %}
</div>
<div class="mt-5">
<table class="table table-striped" aria-label="Institutional affiliations">
<thead>
<tr><th scope="col">Period</th><th scope="col">Institution</th></tr>
</thead>
<tbody>
<tr>
<td>Since Fall 2014</td>
<td>University of Virginia</td>
</tr>
<tr>
<td>Fall 2011 - Spring 2014</td>
<td>Northeastern University</td>
</tr>
<tr>
<td>Spring 2011</td>
<td>Math in Moscow</td>
</tr>
</tbody>
</table>
</div>