1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-08 13:09:09 +00:00
safing-web/_includes/index/features.html
2018-06-11 12:52:23 +02:00

13 lines
412 B
HTML

<section id="features">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
{% for pitch in site.data.homepage.pitches %}
{% comment %}0 = even (right text), 1 = odd (left text){% endcomment %}
{% assign modulo = forloop.index | modulo: 2 %}
{% include pitch.html %}
{% endfor %}
</div>
</div>
</div>
</section>