{% extends 'dev/master.twig' %} {% set header_title = 'projects' %} {% set master_breadcrumbs = [{ url: '/projects', text: 'projects' }] %} {% block column_centre %} {% for project in projects %}

{{ project.info.name }}

{% if project.info.hasSummary %}

{{ project.info.summary }}

{% endif %} {% if project.info.hasDescription %} {% set lines = project.info.description|split("\n") %} {% for line in lines %}

{{ line|trim }}

{% endfor %} {% endif %}
{% for lang in project.langs %} {{ lang.name }} {% endfor %} {% if project.info.hasHomePageUrl %} Homepage {% endif %} {% if project.info.hasSourceUrl %} Source {% endif %} {% if project.info.hasDiscussionUrl %} Discussion {% endif %}
{% endfor %} {% endblock %}