3
私の質問はタイトルに記載されています。Go:テンプレート内で使用できるモジュラスはありますか?
template: products.html:9: unexpected "%" in operand
テンプレートでモジュラスを行うための別の方法があります:私はエラーを取得する
{{range $index, $element := .Products}}
{{if $index % 4 == 0}}<div class="row">{{end}}
<div class="columns small-3 product">
<img src="/img/{{.ImageUrl}}" alt="{{.ImageUrl}}" />
<a href="/product">
<h3>{{.Title}}</h3>
</a>
<p>
{{.Description}}
</p>
<p>
{{.Price}}/liter
</p>
</div>
{{if index % 4 == 0}}</div>{{end}}
{{end}}
:私のような何かをしようとしていますか?