details.php 343 B

123456789101112
  1. <h1>Details</h1>
  2. <?= $context->template("navigation") ?>
  3. <p>
  4. Here, we have a "child page" of the "Welcome" page.
  5. </p>
  6. <?= $context->template("block", array(
  7. "title" => "Detail Block",
  8. "content" => array(
  9. "we are using the same 'block template' as for the welcome page",
  10. "just with different parameters",
  11. )
  12. )) ?>