{% if config.extra.machine_assignment.projects %} {% set machine_amount = config.extra.machine_assignment.projects | length %} {% set colsize = (12 / machine_amount if machine_amount<4 else 4) | int %}

Machine building assignment

Have a look to the machines our Fab Academy students built at {{config.extra.fablab.name}} in {{config.extra.machine_assignment.year}}

{% for project_row in config.extra.machine_assignment.projects | batch(3) %}
{% for project in project_row %}

{{project.name}}

{% endfor %}
{% endfor %}
{% endif %}