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