{% if projects %}

Projects ({{ projects | length }})

{% for project in projects %}
{% if project['summary'] %} {% if loop.first %} {% else %} {% endif %} {% endif %} {% if project['name'] %}
{% if project['name'] %}
{{ project['name'] }}
{% endif %} {% if project['startDate'] %}
{{ project['startDate'] }} {% if project['endDate'] %} - {{ project['endDate'] }} {% else %} - Current {% endif %}
{% endif %}
{% endif %} {% if project['location'] %} {% if project['city'] %} {{ project['city'] }}, {% endif %} {% if project['countryCode'] %} ({{ project['countryCode'] }}) {% endif %} {% if project['region'] %} {{ project['region'] }} {% endif %} {% endif %} {% if project['url'] %} {{ project['url'] }} {% endif %} {% if project['keywords'] %}
    {% for keyword in project['keywords'] %}
  • {{ keyword }}
  • {% endfor %}
{% endif %}
{% if project['summary'] %}
{{ project['summary'] | replace("\r\n", "
") | replace("\n", "
") | replace("\r", "
") }}
{% endif %} {% if project['highlights'] %}
    {% for highlight in project['highlights'] %}
  • {{ highlight | replace("\r\n", "
    ") | replace("\n", "
    ") | replace("\r", "
    ") }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %}