You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

layout.guest.php 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <!--[if lt IE 7]><html class="ng-csp ie ie6 lte9 lte8 lte7"><![endif]-->
  3. <!--[if IE 7]><html class="ng-csp ie ie7 lte9 lte8 lte7"><![endif]-->
  4. <!--[if IE 8]><html class="ng-csp ie ie8 lte9 lte8"><![endif]-->
  5. <!--[if IE 9]><html class="ng-csp ie ie9 lte9"><![endif]-->
  6. <!--[if gt IE 9]><html class="ng-csp ie"><![endif]-->
  7. <!--[if !IE]><!--><html class="ng-csp"><!--<![endif]-->
  8. <head>
  9. <title>ownCloud</title>
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  11. <meta name="apple-itunes-app" content="app-id=543672169">
  12. <link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" />
  13. <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" />
  14. <?php foreach($_['cssfiles'] as $cssfile): ?>
  15. <link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" type="text/css" media="screen" />
  16. <?php endforeach; ?>
  17. <?php foreach($_['jsfiles'] as $jsfile): ?>
  18. <script type="text/javascript" src="<?php print_unescaped($jsfile); ?>"></script>
  19. <?php endforeach; ?>
  20. <?php foreach($_['headers'] as $header): ?>
  21. <?php
  22. print_unescaped('<'.$header['tag'].' ');
  23. foreach($header['attributes'] as $name=>$value) {
  24. print_unescaped("$name='$value' ");
  25. };
  26. print_unescaped('/>');
  27. ?>
  28. <?php endforeach; ?>
  29. </head>
  30. <body id="body-login">
  31. <div id="login">
  32. <header><div id="header">
  33. <img src="<?php print_unescaped(image_path('', 'logo.svg')); ?>" class="svg" alt="ownCloud" />
  34. </div></header>
  35. <?php print_unescaped($_['content']); ?>
  36. </div>
  37. <footer><p class="info"><a href="http://owncloud.org/">ownCloud</a> &ndash;
  38. <?php p($l->t( 'web services under your control' )); ?></p></footer>
  39. </body>
  40. </html>