ActiveCampaign / mustachio

Lightweight, powerful, flavorful, template engine.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Conditional if inside another if

giedriusr opened this issue · comments

Please tell me how can I achieve something like this:

if true
  if true
    // do smth
  end
end

{{#var1}}
  {{#var2}}
    Tadaam: I am here
  {{/var2}}
{{/var1}}