{% 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.summary is not empty %}

{{ project.info.summary }}

{% endif %} {% if project.info.description is not empty %} {% 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.homePageUrl is not empty %} Homepage {% endif %} {% if project.info.sourceUrl is not empty %} Source {% endif %} {% if project.info.discussionUrl is not empty %} Discussion {% endif %}
{% endfor %} {% endblock %}