| 123456789101112 |
- <h1>Details</h1>
- <?= $context->template("navigation") ?>
- <p>
- Here, we have a "child page" of the "Welcome" page.
- </p>
- <?= $context->template("block", array(
- "title" => "Detail Block",
- "content" => array(
- "we are using the same 'block template' as for the welcome page",
- "just with different parameters",
- )
- )) ?>
|