mirror of https://github.com/MingweiSamuel/Riven
18 lines
335 B
Plaintext
18 lines
335 B
Plaintext
|
/* 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>
|
||
|
|
||
|
|
||
|
|