{% comment %} Renders a link to a single project or system. Expects 'item' as a parameter. {% endcomment %}
        {% if item.start_date %}
          {% unless item.end_date %}
          started
          {% endunless %}
          {% assign date = item.start_date %}
          {% include date.html %}
          
          {% if item.end_date %}
               - 
              {% assign date = item.end_date %}
              {% include date.html %}
          {% endif %}
          
        {% endif %}
        
        {{item.teaser | safe}}