{% extends 'dev/master.twig' %} {% set header_title = 'flash.moe / projects' %} {% block container %} {% for sectionId, section in sections %}

{{ section.title }}

{% for project in section.items %}

{{ project.info.name }}
{% for lang in project.langs %}
{{ lang.name }}
{% endfor %}

{% 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 %}
{% endfor %} {% endfor %} {% endblock %}