10 lines
228 B
PHP
10 lines
228 B
PHP
<?php /** @var $this \Ardent\Undercurrent\View\BaseView */ ?>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<title>Base view title</title>
|
|
</head>
|
|
<body>
|
|
Base, slot: <?= $this->data['slot'] ?>
|
|
</body>
|
|
</html>
|