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.

31 lines
1.0 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>ownCloud</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <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'); ?>" />
  7. <?php foreach ($_['cssfiles'] as $cssfile): ?>
  8. <link rel="stylesheet" href="<?php echo $cssfile; ?>" type="text/css" media="screen" />
  9. <?php endforeach; ?>
  10. <script type="text/javascript">
  11. var oc_webroot = '<?php echo OC::$WEBROOT; ?>';
  12. var oc_appswebroots = <?php echo $_['apps_paths'] ?>;
  13. </script>
  14. <?php foreach ($_['jsfiles'] as $jsfile): ?>
  15. <script type="text/javascript" src="<?php echo $jsfile; ?>"></script>
  16. <?php endforeach; ?>
  17. <?php foreach ($_['headers'] as $header): ?>
  18. <?php
  19. echo '<'.$header['tag'].' ';
  20. foreach ($header['attributes'] as $name => $value) {
  21. echo "$name='$value' ";
  22. };
  23. echo '/>';
  24. ?>
  25. <?php endforeach; ?>
  26. </head>
  27. <body>
  28. <?php echo $_['content']; ?>
  29. </body>
  30. </html>