Riven/riven/srcgen/node_modules/dot/examples/views/two.dot.jst
Mingwei Samuel 74eb5fa045 Update example proxy for v2, use workspaces.
- `example/proxy` is new folder for `example_proxy`.
- `riven` is new folder for the main riven lib.
- Updated metadata to be an array and include HTTP method.
2021-09-09 14:31:39 -07:00

17 lines
335 B
Text

/* Including multidef file */
{{#def.multidef}}
<div class="{{=it.class}}">
/* Including one.def file */
{{#def.one}}
/* Using sub-define from multidef */
{{#def.template2:{bar:"hello", class:"hidden"} }}
/* Using sub-define from multidef */
{{ var data = {bar:"world", class:"visible"}; }}
{{#def.template2:data}}
</div>