25 lines
489 B
Plaintext
25 lines
489 B
Plaintext
|
|
COMPONENT(Request& context)
|
|
{
|
|
<>
|
|
<section style="border:1px solid #ccc;padding:1em;margin:1em 0;">
|
|
<? component_render(":TITLE", context.call, context); ?>
|
|
<? component_render(":BODY", context.call, context); ?>
|
|
</section>
|
|
</>
|
|
}
|
|
|
|
COMPONENT:TITLE(Request& context)
|
|
{
|
|
<>
|
|
<h3><?= first(context.call["title"].to_string(), "Component Title") ?></h3>
|
|
</>
|
|
}
|
|
|
|
COMPONENT:BODY(Request& context)
|
|
{
|
|
<>
|
|
<p><?= first(context.call["body"].to_string(), "Component Body") ?></p>
|
|
</>
|
|
}
|