12 lines
307 B
PHP
12 lines
307 B
PHP
<?php /** @var $this \Ardent\Undercurrent\View\BaseView */ ?>
|
|
|
|
<html lang="en">
|
|
<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>
|
|
</html>
|