以下の例では、プレーヤーの名前のリストを生成します。ここで、プレーヤーはMongoDBデータベースからのデータ セットです。
<template name="players">
{{#each topScorers}}
<div>{{name}}</div>
{{/each}}
</template>
しかし、4人並べて表示したいのですが、4人印刷した後、1列ずつ分けて<hr />
続けていきたいです。例えば、
<template name="players">
{{#each topScorers}}
<div style="float:left;">{{name}}</div>
{{if index%4==0}}
<hr style="clear:both;" />
{{/if}
{{/each}}
</template>
コレクションを繰り返しながら、どうすればそのようなことができますか?