例えば
<div class="price">{{blocks.quantity}} x {{blocks.price}} </div>
価格に数量を掛けたい
Json ファイルからのデータ。
例えば
<div class="price">{{blocks.quantity}} x {{blocks.price}} </div>
価格に数量を掛けたい
Json ファイルからのデータ。
次のように、二重中括弧内で数学演算を実行できるはずです。
<div class="price">{{blocks.quantity*blocks.price}}</div>
https://mozilla.github.io/nunjucks/templating.html#mathのドキュメントを参照してください。