Permalink
Cannot retrieve contributors at this time
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?
homepage/teaching/teaching.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
43 lines (35 sloc)
1.59 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 %} • <a href="{{post.syllabus | replace: '__STORAGE_URL__', site.storage_url }}">Syllabus</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> |