imce-page.tpl.php 883 B

123456789101112131415161718192021
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $GLOBALS['language']->language; ?>" xml:lang="<?php print $GLOBALS['language']->language; ?>" class="imce">
  4. <head>
  5. <title><?php print t('File Browser'); ?></title>
  6. <meta name="robots" content="noindex,nofollow" />
  7. <?php if (isset($_GET['app'])): drupal_add_js(drupal_get_path('module', 'imce') .'/js/imce_set_app.js'); endif;?>
  8. <?php print drupal_get_html_head(); ?>
  9. <?php print drupal_get_css(); ?>
  10. <?php print drupal_get_js('header'); ?>
  11. <style media="all" type="text/css">/*Quick-override*/</style>
  12. </head>
  13. <body class="imce">
  14. <div id="imce-messages"><?php print theme('status_messages'); ?></div>
  15. <?php print $content; ?>
  16. <?php print drupal_get_js('footer'); ?>
  17. </body>
  18. </html>