source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/tpl/roundbox/detail.php@ 25027

Last change on this file since 25027 was 25027, checked in by jmt12, 12 years ago

Adding the packages directory, and within it a configured version of dokuwiki all ready to run

File size: 3.0 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<?php
4/**
5 * DokuWiki Roundbox Template
6 *
7 * This is the template for displaying image details
8 *
9 * You should leave the doctype at the very top - It should
10 * always be the very first line of a document.
11 *
12 * @link http://wiki.splitbrain.org/wiki:tpl:templates
13 * @author Andreas Gohr <[email protected]>
14 * @author Christopher Arndt <[email protected]>
15 * @author Don Bowman <[email protected]>
16 */
17
18/* include language settings */
19include_once(dirname(__FILE__).'/lang/en/lang.php');
20@include_once(dirname(__FILE__).'/lang/'.$conf['lang'].'/lang.php');
21
22/* include template helper functions */
23include_once(dirname(__FILE__).'/roundbox.php');
24
25?>
26<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="ltr">
27<head>
28 <title>
29 <?php echo hsc(tpl_img_getTag('IPTC.Headline',$IMG))?>
30 [<?php echo hsc($conf['title'])?>]
31 </title>
32 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
33
34 <?php tpl_metaheaders()?>
35
36 <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" />
37
38 <!--[if gte IE 5]>
39 <style type="text/css">
40 /* that IE 5+ conditional comment makes this only visible in IE 5+ */
41 /* IE bugfix for transparent PNGs */
42 //DISABLED img { behavior: url("<?php echo DOKU_BASE?>lib/scripts/pngbehavior.htc"); }
43 </style>
44 <![endif]-->
45
46<script type="text/javascript"><!--
47function metaedit(id) {
48 window.open('media.php?edit=' + id, 'mediaselect',
49 'width=600,height=415,left=70,top=50,scrollbars=yes,resizable=yes'
50 )
51 return false;
52}
53// -->
54</script>
55
56</head>
57
58<body>
59<!-- start dokuwiki block -->
60<div class="dokuwiki">
61
62 <!-- start content block -->
63 <div id="content">
64
65 <?php if($conf['breadcrumbs']) { ?>
66 <div class="breadcrumbs">
67 <?php tpl_breadcrumbs(); ?>
68 </div>
69 <?php }?>
70
71 <?php if($conf['youarehere']) { ?>
72 <div class="breadcrumbs">
73 <?php tpl_youarehere(); ?>
74 </div>
75 <?php }?>
76
77 <?php if(tpl_getConf('rb_youarehere')) { ?>
78 <div class="breadcrumbs">
79 <?php rb_youarehere(); ?>
80 </div>
81 <?php }?>
82
83 <!-- start wikipage block -->
84 <div id="page" class="page">
85
86 <?php html_msgarea()?>
87
88 <?php if ($ERROR) {
89 print $ERROR;
90 } else { ?>
91
92 <h1 class="img_title">
93 <?php ptln(hsc(tpl_img_getTag('IPTC.Headline', $IMG))); ?>
94 </h1>
95
96 <p class="img_backto">&larr; <?php echo $lang['img_backto'] ?>
97 <?php tpl_pagelink($ID); ?></p>
98
99 <!-- start image -->
100 <div class="img_big">
101 <?php tpl_img(900, 700); echo "\n"; ?>
102 </div>
103 <!-- end image -->
104
105 <!-- start image details -->
106 <div class="img_detail">
107 <?php rb_img_meta(); ?>
108 </div>
109 <!-- end image details -->
110 <?php } ?>
111
112 </div>
113 <!-- end wikipage block -->
114
115 </div>
116 <!-- end content block -->
117
118</div>
119<!-- end dokuwiki block -->
120
121</body>
122</html>
123
Note: See TracBrowser for help on using the repository browser.