You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
407 B

<?php
/**
* @var $_ array
*/
?>
<div id="app-content">
<?php
if (isset($_['code'])) {
if ($_['code'] === 404) {
print_unescaped($this->inc('part.filenotfounderror'));
} elseif ($_['code'] === 500) {
print_unescaped($this->inc('part.internalservererror'));
} else {
print_unescaped($this->inc('part.linkerror'));
}
} else {
print_unescaped($this->inc('part.content'));
}
?>
</div>