Skip to content
Snippets Groups Projects
index.html 457 B
Newer Older
  • Learn to ignore specific revisions
  • ---
    layout: default
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
    title: KWARC - Current Courses 
    
    permalink: /courses/
    ---
    
    {% assign courses = site.pages | where: "layout", "course" | sort: "title" %}
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
    The courses given by the KWARC group in the current semesters: {{site.semesters.current}}
    
    
    
    <ul class="collection">
        {% for item in courses %}
    
            {% if item.semesters contains site.semesters.current %}
    
    Tom Wiesing's avatar
    Tom Wiesing committed
                {% include course.html item=item %}
    
            {% endif %}
        {% endfor %}
    </ul>