summaryrefslogtreecommitdiffstats
path: root/core/templates/layout.guest.php
diff options
context:
space:
mode:
authorJakob Sack <kde@jakobsack.de>2011-06-20 20:29:30 +0200
committerJakob Sack <kde@jakobsack.de>2011-06-20 20:29:30 +0200
commit91c37bbb7642b996e4c386b3033cca02831371ef (patch)
tree96984269f6851e9208e26c9533c5ce4e045396c5 /core/templates/layout.guest.php
parent272fc252fb71422db2101a76fc541f20924808cd (diff)
downloadnextcloud-server-91c37bbb7642b996e4c386b3033cca02831371ef.tar.gz
nextcloud-server-91c37bbb7642b996e4c386b3033cca02831371ef.zip
moved core stuff to /core
Diffstat (limited to 'core/templates/layout.guest.php')
-rw-r--r--core/templates/layout.guest.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php
new file mode 100644
index 00000000000..ce99b00b9f6
--- /dev/null
+++ b/core/templates/layout.guest.php
@@ -0,0 +1,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; ?>
+ <script type="text/javascript">
+ var oc_webroot = '<?php global $WEBROOT; echo $WEBROOT; ?>';
+ // </script>
+ <?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"><?php echo $l->t( '<a href="http://owncloud.org/">ownCloud</a> is a personal cloud which runs on your own server.</p>' ); ?>
+ </body>
+</html>