2011-04-17 01:29:54 +04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2011-03-02 13:56:48 +03:00
|
|
|
<head>
|
|
|
|
<title>ownCloud</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
2011-04-16 21:49:18 +04:00
|
|
|
<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): ?>
|
2011-03-09 23:57:00 +03:00
|
|
|
<link rel="stylesheet" href="<?php echo $cssfile; ?>" type="text/css" media="screen" />
|
|
|
|
<?php endforeach; ?>
|
2011-04-16 21:49:18 +04:00
|
|
|
<?php foreach($_['jsfiles'] as $jsfile): ?>
|
2011-03-09 23:57:00 +03:00
|
|
|
<script type="text/javascript" src="<?php echo $jsfile; ?>"></script>
|
|
|
|
<?php endforeach; ?>
|
2011-03-02 13:56:48 +03:00
|
|
|
</head>
|
|
|
|
|
2011-04-17 17:49:54 +04:00
|
|
|
<body id="body-login">
|
2011-04-16 21:49:18 +04:00
|
|
|
<?php echo $_['content']; ?>
|
2011-04-17 02:37:27 +04:00
|
|
|
<p class="info"><a href="http://owncloud.org/">ownCloud</a> is a personal cloud which runs on your own server.</p>
|
2011-03-02 13:56:48 +03:00
|
|
|
</body>
|
|
|
|
</html>
|