Skip to content
Snippets Groups Projects
upcoming.html 378 B
Newer Older
  • Learn to ignore specific revisions
  • Michael Kohlhase's avatar
    Michael Kohlhase committed
    ---
    layout: default
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
    title: Upcoming Courses ({{site.upcoming}})
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
    permalink: /courses/upcoming/
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
    ---
    
    {% assign courses = site.pages | where: "layout", "course" | sort: "title" %}
    
    <ul class="collection">
        {% for item in courses %}
    
            {% if item.semesters contains site.semesters.upcoming %}
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
                {% include course.html %}
            {% endif %}
        {% endfor %}
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
    </ul>