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