mirror of https://github.com/sveltejs/svelte
30 lines
531 B
30 lines
531 B
<rect x='{{x}}' y='{{y}}' width='{{width}}' height='{{height}}'/>
|
|
|
|
{{#each foo as bar}}
|
|
|
|
<rect x='{{x}}' y='{{y}}' width='{{width}}' height='{{height}}'/>
|
|
|
|
{{else}}
|
|
|
|
{{#each foo as bar}}
|
|
<rect x='{{x}}' y='{{y}}' width='{{width}}' height='{{height}}'/>
|
|
{{/each}}
|
|
|
|
{{/each}}
|
|
|
|
{{#if foo}}
|
|
|
|
{{elseif bar}}
|
|
|
|
{{#each foo as bar}}
|
|
<rect x='{{x}}' y='{{y}}' width='{{width}}' height='{{height}}'/>
|
|
{{/each}}
|
|
|
|
{{else}}
|
|
|
|
{{#each foo as bar}}
|
|
<rect x='{{x}}' y='{{y}}' width='{{width}}' height='{{height}}'/>
|
|
{{/each}}
|
|
|
|
{{/if}}
|