mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
12 lines
270 B
Plaintext
12 lines
270 B
Plaintext
<c:var name="name" value="data.name"/>
|
|
<c:var name="count" value="data.count"/>
|
|
<c:var name="invokeBody" value="data.invokeBody"/>
|
|
|
|
<div class="nested">
|
|
<h1>
|
|
Hello $name! You have $count new messages.
|
|
</h1>
|
|
<p>
|
|
${invokeBody()}
|
|
</p>
|
|
</div> |