--- layout: cypress title: Grid/Grid breakpoints: - name: mobile visibility: mobile count: 2 suffix: '-mobile' - name: tablet visibility: tablet-only count: 4 suffix: '-tablet' - name: desktop visibility: desktop-only count: 8 suffix: '-desktop' - name: widescreen visibility: widescreen-only count: 12 suffix: '-widescreen' - name: fullhd visibility: fullhd count: 16 suffix: '-fullhd' ---
{% for breakpoint in page.breakpoints %} {% endfor %}
{% for breakpoint in page.breakpoints %}

{{ breakpoint.count }} columns on {{ breakpoint.name }}

{% endfor %}
#1
#2
#3
#4
#5
#6
#7
#8
#9
#10
#11
#12
#13
#14
#15
#16
#17
#18
#19
#20