mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
18 lines
308 B
Plaintext
18 lines
308 B
Plaintext
$ {
|
|
var rootClass=input.rootClass,
|
|
colors=input.colors,
|
|
message=input.message;
|
|
}
|
|
|
|
<div class="hello-world ${rootClass}">
|
|
${message}
|
|
</div>
|
|
|
|
<ul if(colors && colors.length)>
|
|
<li class="color" for(color in colors)>
|
|
${color}
|
|
</li>
|
|
</ul>
|
|
<div else>
|
|
No colors!
|
|
</div> |