summaryrefslogtreecommitdiffstats
path: root/templates/layout.guest.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/layout.guest.tmpl')
-rw-r--r--templates/layout.guest.tmpl20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/layout.guest.tmpl b/templates/layout.guest.tmpl
new file mode 100644
index 00000000000..518ba9e771e
--- /dev/null
+++ b/templates/layout.guest.tmpl
@@ -0,0 +1,20 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+ <title>ownCloud</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <link rel="shortcut icon" href="favicon.ico" />
+ [%foreach $cssfiles as $cssfile%]
+ <link rel="stylesheet" href="[%$cssfile%]" type="text/css" media="screen" />
+ [%/foreach%]
+ [%foreach $jsfiles as $jsfile%]
+ <script type="text/javascript" src="[%$jsfile%]"></script>
+ [%/foreach%]
+ </head>
+
+ <body class="login">
+ [%$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>