aboutsummaryrefslogtreecommitdiffstats
path: root/core/templates/404.php
blob: d042944c193ba1b5f960b0816e1ea0a59ef2e449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
if(!isset($_)){//also provide standalone error page
	require_once '../../lib/base.php';
	
	$tmpl = new OC_Template( '', '404', 'guest' );
	$tmpl->printPage();
	exit;
}
?>
<div id="login">
	<img src="<?php echo image_path("", "weather-clear.png"); ?>" alt="ownCloud" />
	<ul>
		<li class='error'>
			<?php echo $l->t( 'Error 404, Cloud not found' ); ?><br/>
			<p class='hint'><?php if(isset($_['file'])) echo $_['file']?></p>
		</li>
	</ul>
</div>