Just wondering, you have `let` tag instead of `set` tag, is it a typo? For instance this: ``` {% set foo = 'something' %} foo is {{ foo }} ``` throws `Error: Unexpected tag : 'set'` this works fine: ``` {% let foo = 'something' %} foo is {{ foo }} ```
Just wondering, you have
lettag instead ofsettag, is it a typo?For instance this:
throws
Error: Unexpected tag : 'set'this works fine: