mirror of
https://github.com/safing/web
synced 2025-04-08 13:09:09 +00:00
13 lines
412 B
HTML
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>
|