2026-04-28 12:10:07 +00:00

16 lines
301 B
Plaintext

COMPONENT(Request& context)
{
String title = first(
context.props["node"]["attrs"]["title"].to_string(),
context.props["argument"].to_string(),
"Notice"
);
<>
<aside>
<p><strong><?= title ?></strong></p>
<div><?: context.props["children_html"].to_string() ?></div>
</aside>
</>
}