Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
---
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">
<h1 class="mt-3 mb-4">Previous teaching</h1>
<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-4 h5">
<a href="{{post.inst-url}}">{{post.inst}}</a>
</div>
<div class="col-md-6 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 %} &bull; <a href="{{post.syllabus | replace: '__STORAGE_URL__', site.storage_url }}">Syllabus</a>{% endif %}
{% if post.web-course-github %} &bull; <a href="{{ post.web-course-github | replace: '__SITE_URL__', site.url }}">Course page on GitHub</a>{% endif %}
{% if post.web-course-external %} &bull; <a href="{{ post.web-course-external | replace: '__SITE_URL__', site.url }}">Course webpage</a>{% endif %}
</div>
</div>
{% endif %}
{% endfor %}
</div>