2011-04-18 08:04:55 -04:00
< ? php
2014-09-17 16:49:37 -04:00
/** @var $_ array */
/** @var $l OC_L10N */
2012-09-07 09:22:01 -04:00
if ( ! isset ( $_ )) { //also provide standalone error page
2011-06-23 17:47:46 -04:00
require_once '../../lib/base.php' ;
2011-04-18 08:04:55 -04:00
2011-07-29 15:36:03 -04:00
$tmpl = new OC_Template ( '' , '404' , 'guest' );
2011-04-18 08:04:55 -04:00
$tmpl -> printPage ();
exit ;
}
?>
2013-07-29 09:33:23 -04:00
< ? php if ( isset ( $_ [ 'content' ])) : ?>
< ? php print_unescaped ( $_ [ 'content' ]) ?>
< ? php else : ?>
< ul >
< li class = " error " >
2015-03-17 18:57:23 -04:00
< ? php p ( $l -> t ( 'File not found' )); ?> <br>
2014-09-17 16:49:37 -04:00
< p class = " hint " >< ? php p ( $l -> t ( 'The specified document has not been found on the server.' )); ?> </p>
2015-12-17 04:53:21 -05:00
< p class = " hint " >< a href = " <?php p( \ OC:: $server->getURLGenerator ()->linkTo('', 'index.php')) ?> " >< ? php p ( $l -> t ( 'You can click here to return to %s.' , array ( $theme -> getName ()))); ?> </a></p>
2013-07-29 09:33:23 -04:00
</ li >
</ ul >
< ? php endif ; ?>