2023-08-15 03:02:55 +02:00
|
|
|
<?php /** @var $this \Ardent\Undercurrent\View\BaseView */ ?>
|
|
|
|
|
2023-08-15 12:10:04 +02:00
|
|
|
<html lang="en">
|
2023-08-15 13:56:04 +02:00
|
|
|
<head>
|
|
|
|
<title>Base view title</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a href="<?= $this->getRoute(\App\Controller\HelloWorldController::class, 'index') ?>">Index</a><br>
|
|
|
|
Base slot: <br>
|
|
|
|
<?= $this->data['slot'] ?>
|
|
|
|
</body>
|
2023-08-15 03:02:55 +02:00
|
|
|
</html>
|