aboutsummaryrefslogtreecommitdiffstats
path: root/templates/layout.guest.php
blob: d86da0610f55cd907289aaae5910d51ead3360b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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 class="login">
		<?php echo $_['content']; ?>
		<p class="info">
			ownCloud is an open personal cloud which runs on your personal server.<br />
			To learn more, please visit <a href="http://www.owncloud.org/">owncloud.org</a>.
		</p>
	</body>
</html>