Skip to content
Snippets Groups Projects
index.md 474 B
Newer Older
  • Learn to ignore specific revisions
  • Michael Kohlhase's avatar
    Michael Kohlhase committed
    ---
    layout: page
    title: KWARC - Open Positions 
    ---
    The KWARC group is constantly looking for good developers and Ph.D. students.
    
    {% assign jobads = site.pages | where: "layout", "jobad" | sort: "title" %}
    
    <ul class="collection">
        {% for item in jobads %}
            {% if item.status contains 'open' %}
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
    	       <li class="collection-item">
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
                   <a href="{{item.url}}" class="title">{{item.title}}</a>
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
               </li>
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
            {% endif %}
        {% endfor %}
    </ul>