RPeraltaJr
12/28/2017 - 7:52 PM

For Loop x Times

Loop something 'x' amount of times

<div class="jobs">
  
  {% for num in (1...3) %}
    
    <h1 class="title">Job {{ num }}</h1>
    
  {% endfor %}
  
</div>