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.

46 lines
1.6 KiB

14 years ago
  1. <?php
  2. /**
  3. * DokuWiki Default Template
  4. *
  5. * This is the template for the media manager popup
  6. *
  7. * You should leave the doctype at the very top - It should
  8. * always be the very first line of a document.
  9. *
  10. * @link http://dokuwiki.org/templates
  11. * @author Andreas Gohr <andi@splitbrain.org>
  12. */
  13. ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  14. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  15. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>"
  16. lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction'] ?>" class="popup">
  17. <head>
  18. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  19. <title>
  20. <?php echo hsc($lang['mediaselect'])?>
  21. [<?php echo strip_tags($conf['title'])?>]
  22. </title>
  23. <?php tpl_metaheaders()?>
  24. <link rel="shortcut icon" href="<?php echo ml('favicon.ico') ?>" />
  25. </head>
  26. <body>
  27. <!--[if IE 6 ]><div id="IE6"><![endif]--><!--[if IE 7 ]><div id="IE7"><![endif]--><!--[if IE 8 ]><div id="IE8"><![endif]-->
  28. <div id="media__manager" class="dokuwiki">
  29. <?php html_msgarea() ?>
  30. <div id="media__left"><div class="pad">
  31. <h1><?php echo hsc($lang['mediaselect'])?></h1>
  32. <?php /* keep the id! additional elements are inserted via JS here */?>
  33. <div id="media__opts"></div>
  34. <?php tpl_mediaTree() ?>
  35. </div></div>
  36. <div id="media__right"><div class="pad">
  37. <?php tpl_mediaContent() ?>
  38. </div></div>
  39. </div>
  40. <!--[if ( IE 6 | IE 7 | IE 8 ) ]></div><![endif]-->
  41. </body>
  42. </html>