diff options
author | andi <andi@splitbrain.org> | 2005-03-11 15:56:11 +0100 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-03-11 15:56:11 +0100 |
commit | 820fa24b2cc7cd677f9e392f5834e69bc3e46dc5 (patch) | |
tree | 6ab77bb50724e2fe5278a45705af366e0ab937e3 /tpl/default/media.php | |
parent | dbbc6aa7ce26c6f7fa25e233787dc448806fea30 (diff) | |
download | rpg-820fa24b2cc7cd677f9e392f5834e69bc3e46dc5.tar.gz rpg-820fa24b2cc7cd677f9e392f5834e69bc3e46dc5.tar.bz2 |
more template additions - media selection works again
darcs-hash:20050311145611-9977f-6a2987fbe10ba90cf279a3874d8d7510e63294b5.gz
Diffstat (limited to 'tpl/default/media.php')
-rw-r--r-- | tpl/default/media.php | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/tpl/default/media.php b/tpl/default/media.php new file mode 100644 index 000000000..6509bdb5a --- /dev/null +++ b/tpl/default/media.php @@ -0,0 +1,62 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<? +/** + * DokuWiki Default Template + * + * This is the template for the media selection popup. + * + * You should leave the doctype at the very top - It should + * always be the very first line of a document. + * + * @link http://wiki.splitbrain.org/wiki:tpl:templates + * @author Andreas Gohr <andi@splitbrain.org> + */ +?> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?=$conf['lang']?>" lang="<?=$conf['lang']?>" dir="ltr"> +<head> + <title><?=hsc($lang['mediaselect'])?> [<?=hsc($conf['title'])?>]</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <?tpl_metaheaders()?> + + <link rel="shortcut icon" href="<?=DOKU_BASE?>images/favicon.ico" /> + <link rel="stylesheet" media="screen" type="text/css" href="<?=DOKU_TPL?>layout.css" /> + <link rel="stylesheet" media="screen" type="text/css" href="<?=DOKU_TPL?>design.css" /> + + <!--[if gte IE 5]> + <style type="text/css"> + /* that IE 5+ conditional comment makes this only visible in IE 5+ */ + /* IE bugfix for transparent PNGs */ + img { behavior: url("<?=DOKU_BASE?>/pngbehavior.htc"); } + </style> + <![endif]--> +</head> + +<body> +<div class="dokuwiki"> + <?html_msgarea()?> + + <h1><?=hsc($lang['mediaselect'])?></h1> + + <div class="mediaselect"> + + <div class="mediaselect-left"> + <b><a href="<?=DOKU_BASE?>/media.php?ns="><?=hsc($lang['namespaces'])?></a></b> + + <?tpl_medianamespaces()?> + </div> + + <div class="mediaselect-right"> + <b>Available files in</b> <code><?=hsc($NS)?>:</code> + + <?tpl_mediafilelist()?> + + <div class="uploadform"> + <?tpl_mediauploadform()?> + </div> + </div> + + </div> + +</div> +</body> |