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