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.
 
 
 
 
 

51 lines
1.3 KiB

  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. ?>
  14. <?php
  15. /**
  16. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  17. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  18. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="ltr">
  19. */
  20. ?>
  21. <!DOCTYPE html>
  22. <html lang="<?php echo $conf['lang']?>" dir="ltr">
  23. <head>
  24. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  25. <title>
  26. <?php echo hsc($lang['mediaselect'])?>
  27. [<?php echo strip_tags($conf['title'])?>]
  28. </title>
  29. <?php tpl_metaheaders()?>
  30. <link rel="shortcut icon" href="<?php echo tpl_basedir()?>images/favicon.ico" />
  31. </head>
  32. <body>
  33. <div id="media__manager" class="dokuwiki">
  34. <div id="media__left">
  35. <?php html_msgarea()?>
  36. <h1><?php echo hsc($lang['mediaselect'])?></h1>
  37. <?php /* keep the id! additional elements are inserted via JS here */?>
  38. <div id="media__opts"></div>
  39. <?php tpl_mediaTree() ?>
  40. </div>
  41. <div id="media__right">
  42. <?php tpl_mediaContent() ?>
  43. </div>
  44. </div>
  45. </body>
  46. </html>