{% extends "base.html" %} {% block content %} {% set numbers = ["one", "two", "three", "four", "five", "six", "seven", "eight", "nine"] %} {% set column_size = settings.colorbox_column_size %} {% set nb_columns = (9 / column_size)|int %} {% set column_size_t = numbers[column_size] %} {% for alb in album.albums %} {% if loop.index % nb_columns == 1 %}
{% endif%}
{{ alb.title }} {{ alb.title }}

{% if loop.last or loop.index % nb_columns == 0 %}
{% endif%} {% endfor %} {% endblock %}