10 lines
241 B
PHTML
10 lines
241 B
PHTML
|
<html>
|
||
|
<head>
|
||
|
<?php if (isset($this->layout()->redirectUrl)): ?>
|
||
|
<meta name="redirectUrl" content="<?= $this->layout()->redirectUrl; ?>">
|
||
|
<?php endif ?>
|
||
|
</head>
|
||
|
<body>
|
||
|
<?= $this->render('inline.phtml'); ?>
|
||
|
</body>
|
||
|
</html>
|