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.
nextcloud-server/core/templates/404.php

19 lines
471 B

<?php
if(!isset($_)){//also provide standalone error page
14 years ago
require_once '../../lib/base.php';
$tmpl = new OC_Template( '', '404', 'guest' );
$tmpl->printPage();
exit;
}
?>
14 years ago
<div id="login">
<header><img src="<?php echo image_path('', 'weather-clear.png'); ?>" alt="ownCloud" /></header>
14 years ago
<ul>
<li class='error'>
14 years ago
<?php echo $l->t( 'Error 404, Cloud not found' ); ?><br/>
14 years ago
<p class='hint'><?php if(isset($_['file'])) echo $_['file']?></p>
</li>
</ul>
</div>