Skip to content
Snippets Groups Projects
Unverified Commit 283368c5 authored by Tom Wiesing's avatar Tom Wiesing
Browse files

Cleanup include tags

parent dcd18cb9
No related branches found
No related tags found
No related merge requests found
---
layout: post
author: mkohlhase
title: KWARC established at FAU
tags:
- Announcements
---
With Dennis Müller moving to Erlangen, we have (the beginnings of) a group presence at FAU.
......@@ -13,10 +13,10 @@ The courses given by the KWARC group in the last semesters:
{% if offers.size > 0%}
<ul class="collection with-header">
<li class="collection-header"><h5>{% include semester.html %}</h5></li>
<li class="collection-header"><h5>{% include semester.html semester=semester %}</h5></li>
{% for item in offers %}
{% include course.html %}
{% include course.html item=item %}
{% endfor %}
</ul>
{% endif %}
......
......@@ -9,7 +9,7 @@ permalink: /courses/
<ul class="collection">
{% for item in courses %}
{% if item.semesters contains site.semesters.current %}
{% include course.html %}
{% include course.html item=item %}
{% endif %}
{% endfor %}
</ul>
......@@ -10,7 +10,7 @@ The courses in the upcoming semester: {{site.upcoming}}
<ul class="collection">
{% for item in courses %}
{% if item.semesters contains site.semesters.upcoming %}
{% include course.html %}
{% include course.html item=item %}
{% endif %}
{% endfor %}
</ul>
......@@ -15,6 +15,6 @@ This level of markup allows for offering interesting [knowledge management servi
<ul class="collection">
{% for post in site.posts limit:5 %}
{% include post_link.html %}
{% include post_link.html post=post %}
{% endfor %}
</ul>
......@@ -7,9 +7,9 @@ source: _posts/
<div class="posts">
<ul class="collection">
{% for post in paginator.posts %}
{% include post_link.html %}
{% include post_link.html post=post %}
{% endfor %}
</ul>
</div>
{% include pagination.html %}
\ No newline at end of file
{% include pagination.html paginator=paginator %}
\ No newline at end of file
......@@ -10,4 +10,4 @@ permalink: /people/
<p>This page lists the current members of the KWARC group (<a href="former.html">former
members</a>).</p>
{% include people_list.html %}
{% include people_list.html people=people %}
......@@ -11,4 +11,4 @@ permalink: /people/former/
members</a>). We are very proud of our alumni; if you are one, please keep in touch. </p>
{% include people_list.html %}
{% include people_list.html people=people %}
......@@ -10,7 +10,7 @@ permalink: /projects/completed/
<ul class="collection">
{% for item in projects %}
{% if item.funding %} {% include psitem.html %} {% endif %}
{% if item.funding %} {% include psitem.html item=item %} {% endif %}
{% endfor %}
</ul>
......@@ -19,7 +19,7 @@ We also organize some of our research and development into Projects,
<ul class="collection">
{% for item in projects %}
{% unless item.funding %} {% include psitem.html %} {% endunless %}
{% unless item.funding %} {% include psitem.html item=item %} {% endunless %}
{% endfor %}
</ul>
......
......@@ -11,7 +11,7 @@ permalink: /projects/
<ul class="collection">
{% for item in projects %}
{% unless item.funding == 'internal' %}
{% include psitem.html %}
{% include psitem.html item=item %}
{% endunless %}
{% endfor %}
</ul>
......@@ -24,7 +24,7 @@ external researchers:
<ul class="collection">
{% for item in projects %}
{% if item.funding == 'internal' %}
{% include psitem.html %}
{% include psitem.html item=item %}
{% endif %}
{% endfor %}
</ul>
......
......@@ -15,7 +15,7 @@ Interoperability and to establish scientific Communities of Practice.
<ul class="collection">
{% for item in systems %}
{% if item.end_date %}
{% include psitem.html %}
{% include psitem.html item=item %}
{% endif %}
{% endfor %}
</ul>
\ No newline at end of file
......@@ -9,7 +9,7 @@ permalink: /systems/
<ul class="collection">
{% for item in systems %}
{% unless item.end_date %}
{% include psitem.html %}
{% include psitem.html item=item %}
{% endunless %}
{% endfor %}
</ul>
......@@ -14,7 +14,7 @@ happy to help you understand the development opportunities and get involved.
<ul class="collection">
{% for item in systems %}
{% if item.orphan %}
{% include psitem.html %}
{% include psitem.html item=item %}
{% endif %}
{% endfor %}
</ul>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment