mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
10 lines
188 B
Plaintext
10 lines
188 B
Plaintext
<div w-bind>
|
|
<h1>${data.heading}</h1>
|
|
<h2 if(data.message)>${data.message}</h2>
|
|
<ul>
|
|
<li for(color in data.colors)>
|
|
${color}
|
|
</li>
|
|
</ul>
|
|
</div>
|