16 lines
No EOL
230 B
Text
16 lines
No EOL
230 B
Text
{
|
|
"world": {
|
|
"active": true,
|
|
"name": "World!"
|
|
}
|
|
}
|
|
---
|
|
{{ if world?.active }}
|
|
Hello {{= world.name }}
|
|
{{ end }}
|
|
|
|
{{ if world?.foo?.bar?.active }}
|
|
Weird!
|
|
{{ else }}
|
|
Deep access is working :)
|
|
{{ end }} |