20 lines
816 B
PHP
20 lines
816 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ownCloud</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link rel="shortcut icon" href="<?php echo image_path('', 'favicon.png'); ?>" /><link rel="apple-touch-icon-precomposed" href="<?php echo image_path('', 'favicon-touch.png'); ?>" />
|
|
<?php foreach($_['cssfiles'] as $cssfile): ?>
|
|
<link rel="stylesheet" href="<?php echo $cssfile; ?>" type="text/css" media="screen" />
|
|
<?php endforeach; ?>
|
|
<?php foreach($_['jsfiles'] as $jsfile): ?>
|
|
<script type="text/javascript" src="<?php echo $jsfile; ?>"></script>
|
|
<?php endforeach; ?>
|
|
</head>
|
|
|
|
<body id="body-login">
|
|
<?php echo $_['content']; ?>
|
|
<p class="info"><a href="http://owncloud.org/">ownCloud</a> is a personal cloud which runs on your own server.</p>
|
|
</body>
|
|
</html>
|