ActiveCampaign / mustachio

Lightweight, powerful, flavorful, template engine.
MIT License
207 stars 17 forks source link

Conditional if inside another if #13

Closed giedriusr closed 6 years ago

giedriusr commented 6 years ago

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}}