- New template for picture.tpl
- Creation of a menu bar in the picture display git-svn-id: http://piwigo.org/svn/trunk@531 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
0b86652fa0
commit
4106c2a524
12 changed files with 296 additions and 254 deletions
|
@ -43,7 +43,7 @@ $conf['order_by'] = ' ORDER BY date_available DESC, file ASC, id ASC';
|
|||
|
||||
$conf['nb_image_row'] = array(4,5,6,7,8);
|
||||
$conf['nb_row_page'] = array(2,3,4,5,6,7,10,20,1000);
|
||||
$conf['slideshow_period'] = array(2,5,10);
|
||||
$conf['slideshow_period'] = 4;
|
||||
$conf['last_days'] = array(1,2,3,10,30,365);
|
||||
|
||||
// $conf['file_ext'] lists all extensions (case insensitive) allowed for
|
||||
|
|
198
picture.php
198
picture.php
|
@ -193,7 +193,8 @@ foreach (array('prev', 'current', 'next') as $i)
|
|||
}
|
||||
|
||||
$picture[$i]['url'] = PHPWG_ROOT_PATH.'picture.php';
|
||||
$picture[$i]['url'].= get_query_string_diff(array('image_id','add_fav'));
|
||||
$picture[$i]['url'].= get_query_string_diff(array('image_id','add_fav',
|
||||
'slideshow'));
|
||||
$picture[$i]['url'].= '&image_id='.$row['id'];
|
||||
}
|
||||
|
||||
|
@ -207,6 +208,8 @@ if ( $page['cat'] == 'search' )
|
|||
$url_admin = PHPWG_ROOT_PATH.'admin.php?page=picture_modify';
|
||||
$url_admin.= '&cat_id='.$page['cat'];
|
||||
$url_admin.= '&image_id='.$_GET['image_id'];
|
||||
|
||||
$url_slide = $picture['current']['url'].'&slideshow='.$conf['slideshow_period'];
|
||||
//----------------------------------------------------------- rate registration
|
||||
if (isset($_GET['rate'])
|
||||
and $conf['rate']
|
||||
|
@ -373,7 +376,7 @@ if ( isset( $_GET['del'] )
|
|||
|
||||
$title = $picture['current']['name'];
|
||||
$refresh = 0;
|
||||
if ( isset( $_GET['slideshow'] ) and $next )
|
||||
if ( isset( $_GET['slideshow'] ) and $has_next )
|
||||
{
|
||||
$refresh= $_GET['slideshow'];
|
||||
$url_link = $picture['next']['url'].'&slideshow='.$refresh;
|
||||
|
@ -385,9 +388,7 @@ if (is_numeric( $page['cat'] ))
|
|||
{
|
||||
$title_img = replace_space(get_cat_display_name( $page['cat_name'], " > "));
|
||||
$n = $page['num'] + 1;
|
||||
$title_nb = "Photo".' '.$n.'/';
|
||||
$title_nb.= $page['cat_nb_images'];
|
||||
//$title_img.= $picture['current']['name'];
|
||||
$title_nb = $n.'/'.$page['cat_nb_images'];
|
||||
}
|
||||
else if ( $page['cat'] == 'search' )
|
||||
{
|
||||
|
@ -409,6 +410,23 @@ else
|
|||
|
||||
$picture_size = get_picture_size( $original_width, $original_height,
|
||||
$user['maxwidth'], $user['maxheight'] );
|
||||
|
||||
// metadata
|
||||
if ($conf['show_exif'] or $conf['show_iptc'])
|
||||
{
|
||||
$metadata_showable = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
$metadata_showable = false;
|
||||
}
|
||||
|
||||
$url_metadata = PHPWG_ROOT_PATH.'picture.php';
|
||||
$url_metadata .= get_query_string_diff(array('add_fav', 'slideshow', 'show_metadata'));
|
||||
if ($metadata_showable and !isset($_GET['show_metadata']))
|
||||
{
|
||||
$url_metadata.= '&show_metadata=1';
|
||||
}
|
||||
|
||||
include(PHPWG_ROOT_PATH.'include/page_header.php');
|
||||
$template->set_filenames(array('picture'=>'picture.tpl'));
|
||||
|
@ -437,38 +455,77 @@ $template->assign_vars(array(
|
|||
'L_COMMENT' =>$lang['comment'],
|
||||
'L_DOWNLOAD' => $lang['download'],
|
||||
'L_DOWNLOAD_HINT' => $lang['download_hint'],
|
||||
'L_PICTURE_SHOW_METADATA' => $lang['picture_show_metadata'],
|
||||
'L_PICTURE_HIDE_METADATA' => $lang['picture_hide_metadata'],
|
||||
|
||||
'T_DEL_IMG' =>PHPWG_ROOT_PATH.'template/'.$user['template'].'/theme/delete.gif',
|
||||
'L_PICTURE_METADATA' => $lang['picture_show_metadata'],
|
||||
|
||||
'U_HOME' => add_session_id($url_home),
|
||||
'U_METADATA' => add_session_id($url_metadata),
|
||||
'U_ADMIN' => add_session_id($url_admin),
|
||||
'U_SLIDESHOW'=> add_session_id($url_slide),
|
||||
'U_ADD_COMMENT' => add_session_id(str_replace( '&', '&', $_SERVER['REQUEST_URI'] ))
|
||||
)
|
||||
);
|
||||
|
||||
//-------------------------------------------------------- slideshow management
|
||||
if ( isset( $_GET['slideshow'] ) )
|
||||
//-------------------------------------------------------- upper menu management
|
||||
// download link if file is not a picture
|
||||
if (!$picture['current']['is_picture'])
|
||||
{
|
||||
if ( !is_numeric( $_GET['slideshow'] ) ) $_GET['slideshow'] = $conf['slideshow_period'][0];
|
||||
|
||||
$template->assign_block_vars('stop_slideshow', array(
|
||||
'U_SLIDESHOW'=>add_session_id( $picture['current']['url'] )
|
||||
));
|
||||
$template->assign_block_vars('download', array(
|
||||
'U_DOWNLOAD' => $picture['current']['download']
|
||||
));
|
||||
}
|
||||
else
|
||||
{
|
||||
$template->assign_block_vars('start_slideshow', array());
|
||||
foreach ( $conf['slideshow_period'] as $option )
|
||||
{
|
||||
$template->assign_block_vars('start_slideshow.second', array(
|
||||
'SLIDESHOW_SPEED'=>$option,
|
||||
'U_SLIDESHOW'=>add_session_id( $picture['current']['url'].'&slideshow='.$option)
|
||||
));
|
||||
}
|
||||
$template->assign_block_vars('ecard', array(
|
||||
'U_ECARD' => $picture['current']['url']
|
||||
));
|
||||
}
|
||||
|
||||
//------------------------------------------------------- favorite manipulation
|
||||
if ( !$user['is_the_guest'] )
|
||||
{
|
||||
// verify if the picture is already in the favorite of the user
|
||||
$query = 'SELECT COUNT(*) AS nb_fav';
|
||||
$query.= ' FROM '.FAVORITES_TABLE.' WHERE image_id = '.$_GET['image_id'];
|
||||
$query.= ' AND user_id = '.$user['id'].';';
|
||||
$result = mysql_query( $query );
|
||||
$row = mysql_fetch_array( $result );
|
||||
if (!$row['nb_fav'])
|
||||
{
|
||||
$url = PHPWG_ROOT_PATH.'picture.php';
|
||||
$url.= get_query_string_diff(array('rate','add_fav'));
|
||||
$url.= '&add_fav=1';
|
||||
|
||||
$template->assign_block_vars(
|
||||
'favorite',
|
||||
array(
|
||||
'FAVORITE_IMG' => PHPWG_ROOT_PATH.'template/'.$user['template'].'/theme/favorite.gif',
|
||||
'FAVORITE_HINT' =>$lang['add_favorites_hint'],
|
||||
'FAVORITE_ALT' =>$lang['add_favorites_alt'],
|
||||
'U_FAVORITE' => $url
|
||||
));
|
||||
}
|
||||
else
|
||||
{
|
||||
$url = PHPWG_ROOT_PATH.'picture.php';
|
||||
$url.= get_query_string_diff(array('rate','add_fav'));
|
||||
$url.= '&add_fav=0';
|
||||
|
||||
$template->assign_block_vars(
|
||||
'favorite',
|
||||
array(
|
||||
'FAVORITE_IMG' => PHPWG_ROOT_PATH.'template/'.$user['template'].'/theme/del_favorite.gif',
|
||||
'FAVORITE_HINT' =>$lang['del_favorites_hint'],
|
||||
'FAVORITE_ALT' =>$lang['del_favorites_alt'],
|
||||
'U_FAVORITE'=> $url
|
||||
));
|
||||
}
|
||||
}
|
||||
//------------------------------------ admin link for information modifications
|
||||
if ( $user['status'] == 'admin' )
|
||||
{
|
||||
$template->assign_block_vars('admin', array());
|
||||
}
|
||||
|
||||
//-------------------------------------------------------- navigation management
|
||||
if ($has_prev)
|
||||
{
|
||||
$template->assign_block_vars(
|
||||
|
@ -502,15 +559,7 @@ if (isset($picture['current']['comment'])
|
|||
'COMMENT_IMG' => $picture['current']['comment']
|
||||
));
|
||||
}
|
||||
// download link if file is not a picture
|
||||
if (!$picture['current']['is_picture'])
|
||||
{
|
||||
$template->assign_block_vars(
|
||||
'download',
|
||||
array(
|
||||
'U_DOWNLOAD' => $picture['current']['download']
|
||||
));
|
||||
}
|
||||
|
||||
|
||||
// author
|
||||
if ( !empty($picture['current']['author']) )
|
||||
|
@ -642,34 +691,13 @@ SELECT COUNT(rate) AS count
|
|||
'VALUE' => $value
|
||||
));
|
||||
}
|
||||
//-------------------------------------------------------------------- metadata
|
||||
if ($conf['show_exif'] or $conf['show_iptc'])
|
||||
{
|
||||
$metadata_showable = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
$metadata_showable = false;
|
||||
}
|
||||
|
||||
if ($metadata_showable and !isset($_GET['show_metadata']))
|
||||
{
|
||||
$url = PHPWG_ROOT_PATH.'picture.php?'.$_SERVER['QUERY_STRING'];
|
||||
$url.= '&show_metadata=1';
|
||||
$template->assign_block_vars('show_metadata', array('URL' => $url));
|
||||
}
|
||||
//metadata
|
||||
|
||||
if ($metadata_showable and isset($_GET['show_metadata']))
|
||||
{
|
||||
$url = PHPWG_ROOT_PATH.'picture.php';
|
||||
$url.= get_query_string_diff(array('show_metadata','add_fav'));
|
||||
|
||||
$template->assign_block_vars('hide_metadata', array('URL' => $url));
|
||||
|
||||
include_once(PHPWG_ROOT_PATH.'/include/functions_metadata.inc.php');
|
||||
|
||||
$template->assign_block_vars('metadata', array());
|
||||
|
||||
if ($conf['show_exif'])
|
||||
{
|
||||
if ($exif = @read_exif_data($picture['current']['src']))
|
||||
|
@ -678,7 +706,7 @@ if ($metadata_showable and isset($_GET['show_metadata']))
|
|||
'metadata.headline',
|
||||
array('TITLE' => 'EXIF Metadata')
|
||||
);
|
||||
|
||||
|
||||
foreach ($conf['show_exif_fields'] as $field)
|
||||
{
|
||||
if (strpos($field, ';') === false)
|
||||
|
@ -723,7 +751,6 @@ if ($metadata_showable and isset($_GET['show_metadata']))
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($conf['show_iptc'])
|
||||
{
|
||||
$iptc = get_iptc_data($picture['current']['src'],
|
||||
|
@ -755,6 +782,16 @@ if ($metadata_showable and isset($_GET['show_metadata']))
|
|||
}
|
||||
}
|
||||
}
|
||||
//slideshow end
|
||||
if ( isset( $_GET['slideshow'] ) )
|
||||
{
|
||||
if ( !is_numeric( $_GET['slideshow'] ) ) $_GET['slideshow'] = $conf['slideshow_period'];
|
||||
|
||||
$template->assign_block_vars('stop_slideshow', array(
|
||||
'U_SLIDESHOW'=>add_session_id( $picture['current']['url'] )
|
||||
));
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------- rate form
|
||||
if ($conf['rate'])
|
||||
{
|
||||
|
@ -806,51 +843,6 @@ SELECT rate
|
|||
));
|
||||
}
|
||||
}
|
||||
//------------------------------------------------------- favorite manipulation
|
||||
if ( !$user['is_the_guest'] )
|
||||
{
|
||||
// verify if the picture is already in the favorite of the user
|
||||
$query = 'SELECT COUNT(*) AS nb_fav';
|
||||
$query.= ' FROM '.FAVORITES_TABLE.' WHERE image_id = '.$_GET['image_id'];
|
||||
$query.= ' AND user_id = '.$user['id'].';';
|
||||
$result = mysql_query( $query );
|
||||
$row = mysql_fetch_array( $result );
|
||||
if (!$row['nb_fav'])
|
||||
{
|
||||
$url = PHPWG_ROOT_PATH.'picture.php';
|
||||
$url.= get_query_string_diff(array('rate','add_fav'));
|
||||
$url.= '&add_fav=1';
|
||||
|
||||
$template->assign_block_vars(
|
||||
'favorite',
|
||||
array(
|
||||
'FAVORITE_IMG' => PHPWG_ROOT_PATH.'template/'.$user['template'].'/theme/favorite.gif',
|
||||
'FAVORITE_HINT' =>$lang['add_favorites_hint'],
|
||||
'FAVORITE_ALT' =>'[ '.$lang['add_favorites_alt'].' ]',
|
||||
'U_FAVORITE' => $url
|
||||
));
|
||||
}
|
||||
else
|
||||
{
|
||||
$url = PHPWG_ROOT_PATH.'picture.php';
|
||||
$url.= get_query_string_diff(array('rate','add_fav'));
|
||||
$url.= '&add_fav=0';
|
||||
|
||||
$template->assign_block_vars(
|
||||
'favorite',
|
||||
array(
|
||||
'FAVORITE_IMG' => PHPWG_ROOT_PATH.'template/'.$user['template'].'/theme/del_favorite.gif',
|
||||
'FAVORITE_HINT' =>$lang['del_favorites_hint'],
|
||||
'FAVORITE_ALT' =>'[ '.$lang['del_favorites_alt'].' ]',
|
||||
'U_FAVORITE'=> $url
|
||||
));
|
||||
}
|
||||
}
|
||||
//------------------------------------ admin link for information modifications
|
||||
if ( $user['status'] == 'admin' )
|
||||
{
|
||||
$template->assign_block_vars('modification', array());
|
||||
}
|
||||
|
||||
//---------------------------------------------------- users's comments display
|
||||
if ( $conf['show_comments'] )
|
||||
|
|
|
@ -1,3 +1,33 @@
|
|||
/*POSITION*/
|
||||
#gauche,#droite
|
||||
{
|
||||
float:left;
|
||||
width:18%;
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
#centre
|
||||
{
|
||||
float:left;
|
||||
width:64%;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
#droite
|
||||
{
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#left
|
||||
{
|
||||
float:left;
|
||||
}
|
||||
|
||||
#right
|
||||
{
|
||||
float:right;
|
||||
}
|
||||
|
||||
/* MAIN STYLES */
|
||||
|
||||
body {
|
||||
|
@ -26,8 +56,17 @@ a:hover { text-decoration:none; color:#FFF48E;}
|
|||
a.none:hover { text-decoration:none;}
|
||||
a.image:hover { text-decoration:none;}
|
||||
a.thumbLink:hover { text-decoration:none;}
|
||||
/*a.adminMenu:hover{ color : #C6B78E; }
|
||||
a.adminMenu{ color : #FFF48E; }*/
|
||||
|
||||
/* LAYOUT STYLE */
|
||||
|
||||
.main {
|
||||
background-color:#444444;
|
||||
border: 1px solid #E0E0E0;
|
||||
width:100%;
|
||||
padding-bottom:30px;
|
||||
text-align:center;
|
||||
display:block;
|
||||
}
|
||||
|
||||
/* Navigation styles */
|
||||
|
||||
|
@ -46,18 +85,12 @@ a.adminMenu{ color : #FFF48E; }*/
|
|||
text-align:center;
|
||||
}
|
||||
|
||||
.titrePage
|
||||
.titrePage
|
||||
{
|
||||
font-family: 'Trebuchet MS', Verdana, sans-serif;
|
||||
text-align:left;
|
||||
font-size:16px;
|
||||
margin-bottom:5px;
|
||||
}
|
||||
|
||||
.titreImg{
|
||||
text-align:center;
|
||||
font-size:16px;
|
||||
color:#FFF48E;
|
||||
font-weight:600;
|
||||
/*margin-bottom:5px;*/
|
||||
}
|
||||
|
||||
.menu {
|
||||
|
@ -69,7 +102,6 @@ a.adminMenu{ color : #FFF48E; }*/
|
|||
|
||||
ul.menu {
|
||||
text-align:left;
|
||||
/* list-style-image : url(theme/collapsed.gif); */
|
||||
list-style-type: square ;
|
||||
padding-left:15px;
|
||||
margin:5px;
|
||||
|
@ -96,6 +128,47 @@ ul.menu {
|
|||
margin : 10px 4px 10px 4px;
|
||||
}
|
||||
|
||||
#imgBarMenu
|
||||
{
|
||||
width:100%;
|
||||
display:block;
|
||||
height:25px;
|
||||
background-image: url(theme/button_bg.gif);
|
||||
border-bottom: 1px solid #000000;
|
||||
}
|
||||
|
||||
.imgMenu
|
||||
{
|
||||
width:48px;
|
||||
border:none;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.imgMenu img
|
||||
{
|
||||
border:none;
|
||||
text-align:center;
|
||||
margin-top:4px;
|
||||
}
|
||||
|
||||
.imgMenu a
|
||||
{
|
||||
display:block;
|
||||
background-image: url(theme/button_bg.gif);
|
||||
height: 25px;
|
||||
border-bottom: 1px solid #000000;
|
||||
border-left: 1px solid #838383;
|
||||
border-right: 1px solid #000000;
|
||||
}
|
||||
|
||||
.imgMenu a:hover
|
||||
{
|
||||
background-image:url(theme/tableh1_bg.gif);
|
||||
border-bottom: 1px solid #3F3F3F;
|
||||
border-left: 1px solid #3F3F3F;
|
||||
border-right: 1px solid #3F3F3F;
|
||||
}
|
||||
|
||||
.commentImage {
|
||||
text-align:justify;
|
||||
font-style:italic;
|
||||
|
@ -106,20 +179,10 @@ ul.menu {
|
|||
|
||||
.nameImage {
|
||||
text-align:center;
|
||||
font-size:24px;
|
||||
background-color: #666666;
|
||||
border-top: 1px solid #222222;
|
||||
border-bottom: 1px solid #222222;
|
||||
font-size:20px;
|
||||
}
|
||||
/* Table styles */
|
||||
|
||||
.main {
|
||||
background-color:#444444;
|
||||
border: 1px solid #E0E0E0;
|
||||
width:100%;
|
||||
padding-bottom:30px;
|
||||
}
|
||||
|
||||
.table1, .home
|
||||
{
|
||||
border: 1px solid #000000;
|
||||
|
@ -349,22 +412,3 @@ span.update_error_element, span.update_category_error {
|
|||
.update_summary_del {
|
||||
color:#ffe1e1;
|
||||
}
|
||||
|
||||
div.remoteOutput {
|
||||
background-color:#444444;
|
||||
border:1px solid black;
|
||||
margin:10px;
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
li.remoteInfo {
|
||||
color:gray;
|
||||
}
|
||||
|
||||
li.remoteWarning {
|
||||
color:#ffe1e1;
|
||||
}
|
||||
|
||||
li.remoteError {
|
||||
color:orange;
|
||||
}
|
|
@ -1,24 +1,21 @@
|
|||
<div class="copyright">
|
||||
<!-- BEGIN debug -->
|
||||
{L_GEN_TIME} {TIME} ::
|
||||
<!-- END debug -->
|
||||
<div class="copyright">
|
||||
<!-- BEGIN debug -->
|
||||
{L_GEN_TIME} {TIME} ::
|
||||
<!-- END debug -->
|
||||
|
||||
<!-- Please, do not remove this copyright. If you really want to,
|
||||
contact me pierrick@phpwebgallery.net to find a solution on how
|
||||
to show the origin of the script...-->
|
||||
<!-- Please, do not remove this copyright. If you really want to,
|
||||
contact me pierrick@phpwebgallery.net to find a solution on how
|
||||
to show the origin of the script...-->
|
||||
|
||||
Powered by <a href="http://www.phpwebgallery.net" class="back">PhpWebGallery</a>
|
||||
{VERSION} ::
|
||||
Powered by <a href="http://www.phpwebgallery.net" class="back">PhpWebGallery</a>
|
||||
{VERSION} ::
|
||||
|
||||
{L_SEND_MAIL}
|
||||
<a href="mailto:{MAIL}?subject={L_TITLE_MAIL}">
|
||||
<span style="font-weight:bold;">{L_WEBMASTER}</span>
|
||||
</a>
|
||||
{L_SEND_MAIL}
|
||||
<a href="mailto:{MAIL}?subject={L_TITLE_MAIL}">
|
||||
<span style="font-weight:bold;">{L_WEBMASTER}</span>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -13,6 +13,4 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<table class="main">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="main">
|
|
@ -1,84 +1,101 @@
|
|||
<!-- BEGIN information -->
|
||||
<div class="information">{information.INFORMATION}</div>
|
||||
<!-- END information -->
|
||||
<!-- BEGIN start_slideshow -->
|
||||
<div style="text-align:center;margin-bottom:5px;">
|
||||
[ {L_SLIDESHOW} :
|
||||
<!-- BEGIN second -->
|
||||
<a href="{start_slideshow.second.U_SLIDESHOW}" class="back" style="font-weight:bold;">{start_slideshow.second.SLIDESHOW_SPEED}</a>
|
||||
<!-- END second -->
|
||||
{L_TIME} ]
|
||||
</div>
|
||||
<!-- END start_slideshow -->
|
||||
<!-- BEGIN stop_slideshow -->
|
||||
<div style="text-align:center;margin-bottom:5px;">
|
||||
[ <a href="{stop_slideshow.U_SLIDESHOW}" class="back" style="font-weight:bold;">{L_STOP_SLIDESHOW}</a> ]
|
||||
</div>
|
||||
<!-- END stop_slideshow -->
|
||||
<table style="width:100%;height:100%;">
|
||||
<tr align="center" valign="middle">
|
||||
<td colspan="3" style="width:100%;">
|
||||
<div class="table2">
|
||||
<div class="titrePage">{CATEGORY}</div>
|
||||
<div class="titreImg">{PHOTO}</div>
|
||||
<a href="{U_HOME}">
|
||||
<img class="image" src="{SRC_IMG}" style="width:{WIDTH_IMG}px;height:{HEIGHT_IMG}px;" alt="{ALT_IMG}"/>
|
||||
</a>
|
||||
<div class="nameImage">{TITLE}</div>
|
||||
<!-- BEGIN download -->
|
||||
<div class="download">[ <a href="{download.U_DOWNLOAD}" title="{L_DOWNLOAD_HINT}">{L_DOWNLOAD}</a> ]</div>
|
||||
<!-- END download -->
|
||||
<!-- BEGIN legend -->
|
||||
<div class="commentImage">{legend.COMMENT_IMG}</div>
|
||||
<!-- END legend -->
|
||||
</div>
|
||||
<table style="width:100%;">
|
||||
<tr align="center" valign="middle">
|
||||
<td style="width:30%;">
|
||||
<!-- BEGIN previous -->
|
||||
<a class="none" href="{previous.U_IMG}" title="{L_PREV_IMG}{previous.TITLE_IMG}">
|
||||
<img style="border:none;" width="30" height="100" src="template/default/theme/left-arrow.jpg" alt="" />
|
||||
<img src="{previous.IMG}" class="thumbLink" style="margin-right:10px;margin-left:5px;" alt="{previous.TITLE_IMG}"/>
|
||||
</a>
|
||||
<!-- END previous -->
|
||||
</td>
|
||||
<td style="width:40%;">
|
||||
<table style="margin:auto;margin-top:5px;margin-bottom:5px;">
|
||||
<!-- BEGIN info_line -->
|
||||
<tr>
|
||||
<td class="menu" style="font-weight:bold;">{info_line.INFO} : </td>
|
||||
<td class="menu" style="text-align:right;">{info_line.VALUE}</td>
|
||||
</tr>
|
||||
<!-- END info_line -->
|
||||
</table>
|
||||
</td>
|
||||
<td style="width:30%;">
|
||||
<!-- BEGIN next -->
|
||||
<a class="none" href="{next.U_IMG}" title="{L_NEXT_IMG}{next.TITLE_IMG}">
|
||||
<img class="thumbLink" src="{next.IMG}" style="margin-right:10px;margin-left:5px;" alt="{next.TITLE_IMG}"/>
|
||||
<img style="border:none;" class="thumbLink" width="30" height="100" src="template/default/theme/right-arrow.jpg" alt="" />
|
||||
</a>
|
||||
<!-- END next -->
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- BEGIN favorite -->
|
||||
<div class="menu" style="text-align:center;margin:5px;">
|
||||
<a href="{favorite.U_FAVORITE}" title="{favorite.FAVORITE_HINT}">
|
||||
<img src="{favorite.FAVORITE_IMG}" style="border:none;margin-left:5px;" alt="" />{favorite.FAVORITE_ALT}
|
||||
</a>
|
||||
</div>
|
||||
<!-- END favorite -->
|
||||
<!-- BEGIN information -->
|
||||
<div class="information">{information.INFORMATION}</div>
|
||||
<!-- END information -->
|
||||
<div class="titrePage">
|
||||
<div id="gauche">{CATEGORY}</div>
|
||||
<div id="centre" class="nameImage">{TITLE}</div>
|
||||
<div id="droite">{PHOTO}</div>
|
||||
</div>
|
||||
|
||||
<!-- BEGIN show_metadata -->
|
||||
[ <a href="{show_metadata.URL}">{L_PICTURE_SHOW_METADATA}</a> ]
|
||||
<!-- END show_metadata -->
|
||||
<div id="imgBarMenu">
|
||||
<div class="imgMenu" id="left">
|
||||
<a href="{U_HOME}" title="{L_HOME}">
|
||||
<img src="template/default/theme/categories.gif" alt="{L_HOME}" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="imgMenu" id="left">
|
||||
<a href="{U_SLIDESHOW}" title="{L_SLIDESHOW}">
|
||||
<img src="template/default/theme/slideshow.gif" alt="{L_SLIDESHOW}" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="imgMenu" id="left">
|
||||
<a href="{U_METADATA}" title="{L_PICTURE_METADATA}">
|
||||
<img src="template/default/theme/metadata.gif" alt="{L_PICTURE_METADATA}" />
|
||||
</a>
|
||||
</div>
|
||||
<!-- BEGIN favorite -->
|
||||
<div class="imgMenu" id="right">
|
||||
<a href="{favorite.U_FAVORITE}" title="{favorite.FAVORITE_HINT}">
|
||||
<img src="{favorite.FAVORITE_IMG}" alt="{favorite.FAVORITE_ALT}" />
|
||||
</a>
|
||||
</div>
|
||||
<!-- END favorite -->
|
||||
<!-- BEGIN download -->
|
||||
<div class="imgMenu" id="right">
|
||||
<a href="{download.U_DOWNLOAD}" title="{L_DOWNLOAD}">
|
||||
<img src="template/default/theme/download.gif" alt="{L_DOWNLOAD}" />
|
||||
</a>
|
||||
</div>
|
||||
<!-- END download -->
|
||||
<!-- BEGIN ecard -->
|
||||
<div class="imgMenu" id="right">
|
||||
<a href="{ecard.U_ECARD}" title="{L_DOWNLOAD}">
|
||||
<img src="template/default/theme/eCard.gif" alt="{L_DOWNLOAD}" />
|
||||
</a>
|
||||
</div>
|
||||
<!-- END ecard -->
|
||||
<!-- BEGIN admin -->
|
||||
<div class="imgMenu" id="right">
|
||||
<a href="{U_ADMIN}" title="{L_ADMIN}">
|
||||
<img src="template/default/theme/properties.gif" alt="{L_ADMIN}" />
|
||||
</a>
|
||||
</div>
|
||||
<!-- END admin -->
|
||||
</div>
|
||||
|
||||
<!-- BEGIN hide_metadata -->
|
||||
[ <a href="{hide_metadata.URL}">{L_PICTURE_HIDE_METADATA}</a> ]
|
||||
<!-- END hide_metadata -->
|
||||
<a href="{U_HOME}">
|
||||
<img class="image" src="{SRC_IMG}" style="width:{WIDTH_IMG}px;height:{HEIGHT_IMG}px;" alt="{ALT_IMG}"/>
|
||||
</a>
|
||||
<!-- BEGIN legend -->
|
||||
<div class="commentImage">{legend.COMMENT_IMG}</div>
|
||||
<!-- END legend -->
|
||||
|
||||
<!-- BEGIN metadata -->
|
||||
<!-- BEGIN stop_slideshow -->
|
||||
<div style="text-align:center;margin-bottom:5px;">
|
||||
[ <a href="{stop_slideshow.U_SLIDESHOW}" class="back" style="font-weight:bold;">{L_STOP_SLIDESHOW}</a> ]
|
||||
</div>
|
||||
<!-- END stop_slideshow -->
|
||||
|
||||
<div id="gauche">
|
||||
|
||||
<!-- BEGIN previous -->
|
||||
<a class="none" href="{previous.U_IMG}" title="{L_PREV_IMG}{previous.TITLE_IMG}">
|
||||
<img style="border:none;" width="30" height="100" src="template/default/theme/left-arrow.jpg" alt="" />
|
||||
<img src="{previous.IMG}" class="thumbLink" style="margin-right:10px;margin-left:5px;" alt="{previous.TITLE_IMG}"/>
|
||||
</a>
|
||||
<!-- END previous -->
|
||||
</div>
|
||||
<div id="centre">
|
||||
<table style="margin:auto;margin-top:5px;margin-bottom:5px;">
|
||||
<!-- BEGIN info_line -->
|
||||
<tr>
|
||||
<td class="menu" style="font-weight:bold;">{info_line.INFO} : </td>
|
||||
<td class="menu" style="text-align:right;">{info_line.VALUE}</td>
|
||||
</tr>
|
||||
<!-- END info_line -->
|
||||
</table>
|
||||
</div>
|
||||
<div id="droite">
|
||||
<!-- BEGIN next -->
|
||||
<a class="none" href="{next.U_IMG}" title="{L_NEXT_IMG}{next.TITLE_IMG}">
|
||||
<img class="thumbLink" src="{next.IMG}" style="margin-right:10px;margin-left:5px;" alt="{next.TITLE_IMG}"/>
|
||||
<img style="border:none;" class="thumbLink" width="30" height="100" src="template/default/theme/right-arrow.jpg" alt="" />
|
||||
</a>
|
||||
<!-- END next -->
|
||||
|
||||
</div>
|
||||
<div style="clear:both"></div>
|
||||
<!-- BEGIN metadata -->
|
||||
<table class="metadata">
|
||||
<!-- BEGIN headline -->
|
||||
<tr>
|
||||
|
@ -103,15 +120,9 @@
|
|||
</div>
|
||||
<!-- END rate -->
|
||||
|
||||
<!-- BEGIN modification -->
|
||||
<div class="menu" style="text-align:center;margin:5px;">
|
||||
[ <a href="{U_ADMIN}">{L_ADMIN}</a> ]
|
||||
</div>
|
||||
<!-- END modification -->
|
||||
|
||||
<div style="text-align:center;">{L_BACK}</div>
|
||||
</td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<table class="tablecompact">
|
||||
<!-- BEGIN comments -->
|
||||
<tr align="center" valign="middle">
|
||||
<td colspan="3" class="table2">
|
||||
|
@ -128,7 +139,7 @@
|
|||
<td colspan="2" class="commentDate">
|
||||
{comments.comment.COMMENT_DATE}
|
||||
<!-- BEGIN delete -->
|
||||
<a href="{comments.comment.delete.U_COMMENT_DELETE}" title="{L_DELETE_COMMENT}"><img src="{T_DEL_IMG}" style="border:none;vertical-align:middle; margin-left:5px;" alt="[{L_DELETE}]"/></a>
|
||||
<a href="{comments.comment.delete.U_COMMENT_DELETE}" title="{L_DELETE_COMMENT}"><img src="template/default/theme/delete.gif" style="border:none;vertical-align:middle; margin-left:5px;" alt="[{L_DELETE}]"/></a>
|
||||
<!-- END delete -->
|
||||
</td>
|
||||
</tr>
|
||||
|
|
BIN
template/default/theme/categories.gif
Normal file
BIN
template/default/theme/categories.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 976 B |
BIN
template/default/theme/download.gif
Normal file
BIN
template/default/theme/download.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1 KiB |
BIN
template/default/theme/eCard.gif
Normal file
BIN
template/default/theme/eCard.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 961 B |
BIN
template/default/theme/metadata.gif
Normal file
BIN
template/default/theme/metadata.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1,020 B |
BIN
template/default/theme/properties.gif
Normal file
BIN
template/default/theme/properties.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1,010 B |
BIN
template/default/theme/slideshow.gif
Normal file
BIN
template/default/theme/slideshow.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1,017 B |
Loading…
Reference in a new issue