Changeset 531


Ignore:
Timestamp:
Sep 23, 2004, 6:42:11 PM (20 years ago)
Author:
gweltas
Message:
  • New template for picture.tpl
  • Creation of a menu bar in the picture display
Location:
trunk
Files:
6 added
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config.inc.php

    r519 r531  
    4444$conf['nb_image_row']       = array(4,5,6,7,8);
    4545$conf['nb_row_page']        = array(2,3,4,5,6,7,10,20,1000);
    46 $conf['slideshow_period']   = array(2,5,10);
     46$conf['slideshow_period']   = 4;
    4747$conf['last_days']          = array(1,2,3,10,30,365);
    4848
  • trunk/picture.php

    r511 r531  
    194194
    195195  $picture[$i]['url'] = PHPWG_ROOT_PATH.'picture.php';
    196   $picture[$i]['url'].= get_query_string_diff(array('image_id','add_fav'));
     196  $picture[$i]['url'].= get_query_string_diff(array('image_id','add_fav',
     197                          'slideshow'));
    197198  $picture[$i]['url'].= '&image_id='.$row['id'];
    198199}
     
    208209$url_admin.= '&cat_id='.$page['cat'];
    209210$url_admin.= '&image_id='.$_GET['image_id'];
     211
     212$url_slide = $picture['current']['url'].'&slideshow='.$conf['slideshow_period'];
    210213//----------------------------------------------------------- rate registration
    211214if (isset($_GET['rate'])
     
    374377$title =  $picture['current']['name'];
    375378$refresh = 0;
    376 if ( isset( $_GET['slideshow'] ) and $next )
     379if ( isset( $_GET['slideshow'] ) and $has_next )
    377380{
    378381  $refresh= $_GET['slideshow'];
     
    386389  $title_img = replace_space(get_cat_display_name( $page['cat_name'], " > "));
    387390  $n = $page['num'] + 1;
    388   $title_nb = "Photo".' '.$n.'/';
    389   $title_nb.= $page['cat_nb_images'];
    390   //$title_img.= $picture['current']['name'];
     391  $title_nb = $n.'/'.$page['cat_nb_images'];
    391392}
    392393else if ( $page['cat'] == 'search' )
     
    410411$picture_size = get_picture_size( $original_width, $original_height,
    411412                                  $user['maxwidth'], $user['maxheight'] );
     413
     414// metadata
     415if ($conf['show_exif'] or $conf['show_iptc'])
     416{
     417  $metadata_showable = true;
     418}
     419else
     420{
     421  $metadata_showable = false;
     422}
     423
     424$url_metadata = PHPWG_ROOT_PATH.'picture.php';
     425$url_metadata .=  get_query_string_diff(array('add_fav', 'slideshow', 'show_metadata'));
     426if ($metadata_showable and !isset($_GET['show_metadata']))
     427{
     428  $url_metadata.= '&show_metadata=1';
     429}
    412430                                 
    413431include(PHPWG_ROOT_PATH.'include/page_header.php');
     
    438456  'L_DOWNLOAD' => $lang['download'],
    439457  'L_DOWNLOAD_HINT' => $lang['download_hint'],
    440   'L_PICTURE_SHOW_METADATA' => $lang['picture_show_metadata'],
    441   'L_PICTURE_HIDE_METADATA' => $lang['picture_hide_metadata'],
    442  
    443   'T_DEL_IMG' =>PHPWG_ROOT_PATH.'template/'.$user['template'].'/theme/delete.gif',
     458  'L_PICTURE_METADATA' => $lang['picture_show_metadata'],
    444459 
    445460  'U_HOME' => add_session_id($url_home),
     461  'U_METADATA' => add_session_id($url_metadata),
    446462  'U_ADMIN' => add_session_id($url_admin),
     463  'U_SLIDESHOW'=> add_session_id($url_slide),
    447464  'U_ADD_COMMENT' => add_session_id(str_replace( '&', '&', $_SERVER['REQUEST_URI'] ))
    448465  )
    449466);
    450 
    451 //-------------------------------------------------------- slideshow management
    452 if ( isset( $_GET['slideshow'] ) )
    453 {
    454   if ( !is_numeric( $_GET['slideshow'] ) ) $_GET['slideshow'] = $conf['slideshow_period'][0];
    455        
    456   $template->assign_block_vars('stop_slideshow', array(
    457   'U_SLIDESHOW'=>add_session_id( $picture['current']['url'] )
    458   ));
     467//-------------------------------------------------------- upper menu management
     468// download link if file is not a picture
     469if (!$picture['current']['is_picture'])
     470{
     471  $template->assign_block_vars('download', array(
     472        'U_DOWNLOAD' => $picture['current']['download']
     473      ));
    459474}
    460475else
    461476{
    462   $template->assign_block_vars('start_slideshow', array());
    463   foreach ( $conf['slideshow_period'] as $option )
    464   {
    465     $template->assign_block_vars('start_slideshow.second', array(
    466           'SLIDESHOW_SPEED'=>$option,
    467           'U_SLIDESHOW'=>add_session_id( $picture['current']['url'].'&slideshow='.$option)
    468           ));
    469   }
    470 }
    471 
     477  $template->assign_block_vars('ecard', array(
     478        'U_ECARD' => $picture['current']['url']
     479      ));
     480}
     481
     482//------------------------------------------------------- favorite manipulation
     483if ( !$user['is_the_guest'] )
     484{
     485  // verify if the picture is already in the favorite of the user
     486  $query = 'SELECT COUNT(*) AS nb_fav';
     487  $query.= ' FROM '.FAVORITES_TABLE.' WHERE image_id = '.$_GET['image_id'];
     488  $query.= ' AND user_id = '.$user['id'].';';
     489  $result = mysql_query( $query );
     490  $row = mysql_fetch_array( $result );
     491  if (!$row['nb_fav'])
     492  {
     493    $url = PHPWG_ROOT_PATH.'picture.php';
     494    $url.= get_query_string_diff(array('rate','add_fav'));
     495    $url.= '&add_fav=1';
     496
     497    $template->assign_block_vars(
     498      'favorite',
     499      array(
     500        'FAVORITE_IMG' => PHPWG_ROOT_PATH.'template/'.$user['template'].'/theme/favorite.gif',
     501        'FAVORITE_HINT' =>$lang['add_favorites_hint'],
     502        'FAVORITE_ALT' =>$lang['add_favorites_alt'],
     503        'U_FAVORITE' => $url
     504        ));
     505  }
     506  else
     507  {
     508    $url = PHPWG_ROOT_PATH.'picture.php';
     509    $url.= get_query_string_diff(array('rate','add_fav'));
     510    $url.= '&add_fav=0';
     511   
     512    $template->assign_block_vars(
     513      'favorite',
     514      array(
     515        'FAVORITE_IMG' => PHPWG_ROOT_PATH.'template/'.$user['template'].'/theme/del_favorite.gif',
     516        'FAVORITE_HINT' =>$lang['del_favorites_hint'],
     517        'FAVORITE_ALT' =>$lang['del_favorites_alt'],
     518        'U_FAVORITE'=> $url
     519        ));
     520  }
     521}
     522//------------------------------------ admin link for information modifications
     523if ( $user['status'] == 'admin' )
     524{
     525  $template->assign_block_vars('admin', array());
     526}
     527
     528//-------------------------------------------------------- navigation management
    472529if ($has_prev)
    473530{
     
    503560      ));
    504561}
    505 // download link if file is not a picture
    506 if (!$picture['current']['is_picture'])
    507 {
    508   $template->assign_block_vars(
    509     'download',
    510     array(
    511         'U_DOWNLOAD' => $picture['current']['download']
    512       ));
    513 }
     562
    514563
    515564// author
     
    643692      ));
    644693}
    645 //-------------------------------------------------------------------- metadata
    646 if ($conf['show_exif'] or $conf['show_iptc'])
    647 {
    648   $metadata_showable = true;
    649 }
    650 else
    651 {
    652   $metadata_showable = false;
    653 }
    654 
    655 if ($metadata_showable and !isset($_GET['show_metadata']))
    656 {
    657   $url = PHPWG_ROOT_PATH.'picture.php?'.$_SERVER['QUERY_STRING'];
    658   $url.= '&show_metadata=1';
    659   $template->assign_block_vars('show_metadata', array('URL' => $url));
    660 }
     694
     695//metadata
    661696
    662697if ($metadata_showable and isset($_GET['show_metadata']))
    663698{
    664   $url = PHPWG_ROOT_PATH.'picture.php';
    665   $url.= get_query_string_diff(array('show_metadata','add_fav'));
    666  
    667   $template->assign_block_vars('hide_metadata', array('URL' => $url));
    668  
    669699  include_once(PHPWG_ROOT_PATH.'/include/functions_metadata.inc.php');
    670  
    671700  $template->assign_block_vars('metadata', array());
    672  
    673701  if ($conf['show_exif'])
    674702  {
     
    679707        array('TITLE' => 'EXIF Metadata')
    680708        );
    681      
     709
    682710      foreach ($conf['show_exif_fields'] as $field)
    683711      {
     
    724752    }
    725753  }
    726 
    727754  if ($conf['show_iptc'])
    728755  {
     
    756783  }
    757784}
     785//slideshow end
     786if ( isset( $_GET['slideshow'] ) )
     787{
     788  if ( !is_numeric( $_GET['slideshow'] ) ) $_GET['slideshow'] = $conf['slideshow_period'];
     789       
     790  $template->assign_block_vars('stop_slideshow', array(
     791  'U_SLIDESHOW'=>add_session_id( $picture['current']['url'] )
     792  ));
     793}
     794
    758795//------------------------------------------------------------------- rate form
    759796if ($conf['rate'])
     
    806843        ));
    807844  }
    808 }
    809 //------------------------------------------------------- favorite manipulation
    810 if ( !$user['is_the_guest'] )
    811 {
    812   // verify if the picture is already in the favorite of the user
    813   $query = 'SELECT COUNT(*) AS nb_fav';
    814   $query.= ' FROM '.FAVORITES_TABLE.' WHERE image_id = '.$_GET['image_id'];
    815   $query.= ' AND user_id = '.$user['id'].';';
    816   $result = mysql_query( $query );
    817   $row = mysql_fetch_array( $result );
    818   if (!$row['nb_fav'])
    819   {
    820     $url = PHPWG_ROOT_PATH.'picture.php';
    821     $url.= get_query_string_diff(array('rate','add_fav'));
    822     $url.= '&add_fav=1';
    823 
    824     $template->assign_block_vars(
    825       'favorite',
    826       array(
    827         'FAVORITE_IMG' => PHPWG_ROOT_PATH.'template/'.$user['template'].'/theme/favorite.gif',
    828         'FAVORITE_HINT' =>$lang['add_favorites_hint'],
    829         'FAVORITE_ALT' =>'[ '.$lang['add_favorites_alt'].' ]',
    830         'U_FAVORITE' => $url
    831         ));
    832   }
    833   else
    834   {
    835     $url = PHPWG_ROOT_PATH.'picture.php';
    836     $url.= get_query_string_diff(array('rate','add_fav'));
    837     $url.= '&add_fav=0';
    838    
    839     $template->assign_block_vars(
    840       'favorite',
    841       array(
    842         'FAVORITE_IMG' => PHPWG_ROOT_PATH.'template/'.$user['template'].'/theme/del_favorite.gif',
    843         'FAVORITE_HINT' =>$lang['del_favorites_hint'],
    844         'FAVORITE_ALT' =>'[ '.$lang['del_favorites_alt'].' ]',
    845         'U_FAVORITE'=> $url
    846         ));
    847   }
    848 }
    849 //------------------------------------ admin link for information modifications
    850 if ( $user['status'] == 'admin' )
    851 {
    852   $template->assign_block_vars('modification', array());
    853845}
    854846
  • trunk/template/default/default.css

    r527 r531  
     1/*POSITION*/
     2#gauche,#droite
     3{
     4  float:left;
     5  width:18%;
     6  text-align:left;
     7}
     8
     9#centre
     10{
     11  float:left;
     12  width:64%;
     13  text-align:center;
     14}
     15
     16#droite
     17{
     18  text-align:right;
     19}
     20
     21#left
     22{
     23  float:left;
     24}
     25
     26#right
     27{
     28  float:right;
     29}
     30
    131/* MAIN STYLES */
    232
     
    2757a.image:hover { text-decoration:none;}
    2858a.thumbLink:hover { text-decoration:none;}
    29 /*a.adminMenu:hover{ color : #C6B78E; }
    30 a.adminMenu{ color : #FFF48E; }*/
     59
     60/* LAYOUT STYLE */
     61
     62.main {
     63        background-color:#444444;
     64        border: 1px solid #E0E0E0;
     65        width:100%;
     66        padding-bottom:30px;
     67        text-align:center;
     68        display:block;
     69}
    3170
    3271/* Navigation styles */
     
    4786}
    4887
    49 .titrePage
    50 {
     88.titrePage
     89{
     90  font-family: 'Trebuchet MS', Verdana, sans-serif;
    5191  text-align:left;
    5292  font-size:16px;
    53   margin-bottom:5px;
    54 }
    55 
    56 .titreImg{
    57   text-align:center;
    58   font-size:16px;
    59   color:#FFF48E;
    60   font-weight:600;
     93  /*margin-bottom:5px;*/
    6194}
    6295
     
    70103ul.menu {
    71104  text-align:left;
    72   /* list-style-image : url(theme/collapsed.gif); */
    73105  list-style-type: square ;
    74106  padding-left:15px;
     
    95127        border : 3px solid #FFFFFF;
    96128        margin : 10px 4px 10px 4px;
     129}
     130
     131#imgBarMenu
     132{
     133  width:100%;
     134  display:block;
     135  height:25px;
     136  background-image: url(theme/button_bg.gif);
     137  border-bottom: 1px solid #000000;
     138}
     139 
     140.imgMenu
     141{
     142  width:48px;
     143  border:none;
     144  float:left;
     145}
     146
     147.imgMenu img
     148{
     149 border:none;
     150 text-align:center;
     151 margin-top:4px;
     152}
     153 
     154.imgMenu a
     155{
     156  display:block;
     157  background-image: url(theme/button_bg.gif);
     158  height: 25px;
     159  border-bottom: 1px solid #000000;
     160  border-left: 1px solid #838383;
     161  border-right: 1px solid #000000;
     162}
     163
     164.imgMenu a:hover
     165{
     166  background-image:url(theme/tableh1_bg.gif);
     167  border-bottom: 1px solid #3F3F3F;
     168  border-left: 1px solid #3F3F3F;
     169  border-right: 1px solid #3F3F3F;
    97170}
    98171
     
    107180.nameImage {
    108181  text-align:center;
    109   font-size:24px;
    110   background-color: #666666;
    111   border-top: 1px solid #222222;
    112   border-bottom: 1px solid #222222;
     182  font-size:20px;
    113183}
    114184/* Table styles */
    115 
    116 .main {
    117         background-color:#444444;
    118         border: 1px solid #E0E0E0;
    119         width:100%;
    120         padding-bottom:30px;
    121 }
    122185
    123186.table1, .home
     
    350413  color:#ffe1e1;
    351414}
    352 
    353 div.remoteOutput {
    354   background-color:#444444;
    355   border:1px solid black;
    356   margin:10px;
    357   text-align:left;
    358 }
    359 
    360 li.remoteInfo {
    361   color:gray;
    362 }
    363 
    364 li.remoteWarning {
    365   color:#ffe1e1;
    366 }
    367 
    368 li.remoteError {
    369   color:orange;
    370 }
  • trunk/template/default/footer.tpl

    r516 r531  
    1      <div class="copyright">
    2      <!-- BEGIN debug -->
    3      {L_GEN_TIME} {TIME} ::
    4      <!-- END debug -->
     1 <div class="copyright">
     2 <!-- BEGIN debug -->
     3 {L_GEN_TIME} {TIME} ::
     4 <!-- END debug -->
    55
    6      <!-- Please, do not remove this copyright. If you really want to,
    7           contact me pierrick@phpwebgallery.net to find a solution on how
    8           to show the origin of the script...-->
     6 <!-- Please, do not remove this copyright. If you really want to,
     7          contact me pierrick@phpwebgallery.net to find a solution on how
     8          to show the origin of the script...-->
    99
    10       Powered by <a href="http://www.phpwebgallery.net" class="back">PhpWebGallery</a>
    11       {VERSION} ::
     10  Powered by <a href="http://www.phpwebgallery.net" class="back">PhpWebGallery</a>
     11  {VERSION} ::
    1212
    13       {L_SEND_MAIL}
    14       <a href="mailto:{MAIL}?subject={L_TITLE_MAIL}">
    15        <span style="font-weight:bold;">{L_WEBMASTER}</span>
    16       </a>
     13  {L_SEND_MAIL}
     14  <a href="mailto:{MAIL}?subject={L_TITLE_MAIL}">
     15   <span style="font-weight:bold;">{L_WEBMASTER}</span>
     16  </a>
    1717
    18      </div>
    19 
    20     </td>
    21    </tr>
    22   </table>
     18 </div>
     19 </div>
    2320 </body>
    2421</html>
  • trunk/template/default/header.tpl

    r401 r531  
    1414
    1515 <body>
    16   <table class="main">
    17    <tr>
    18     <td>
     16 <div class="main">
  • trunk/template/default/picture.tpl

    r507 r531  
    1     <!-- BEGIN information -->
    2     <div class="information">{information.INFORMATION}</div>
    3     <!-- END information -->
    4     <!-- BEGIN start_slideshow -->
    5     <div style="text-align:center;margin-bottom:5px;">
    6       [ {L_SLIDESHOW} :
    7       <!-- BEGIN second -->
    8       <a href="{start_slideshow.second.U_SLIDESHOW}" class="back" style="font-weight:bold;">{start_slideshow.second.SLIDESHOW_SPEED}</a>
    9       <!-- END second -->
    10       {L_TIME} ]
    11     </div>
    12     <!-- END start_slideshow -->
    13     <!-- BEGIN stop_slideshow -->
    14     <div style="text-align:center;margin-bottom:5px;">
    15       [ <a href="{stop_slideshow.U_SLIDESHOW}" class="back" style="font-weight:bold;">{L_STOP_SLIDESHOW}</a> ]
    16     </div>
    17     <!-- END stop_slideshow -->
    18     <table style="width:100%;height:100%;">
    19       <tr align="center" valign="middle">
    20         <td colspan="3" style="width:100%;">
    21                 <div class="table2">
    22                 <div class="titrePage">{CATEGORY}</div>
    23                 <div class="titreImg">{PHOTO}</div>
    24           <a href="{U_HOME}">
    25             <img class="image" src="{SRC_IMG}" style="width:{WIDTH_IMG}px;height:{HEIGHT_IMG}px;" alt="{ALT_IMG}"/>
    26           </a>
    27                   <div class="nameImage">{TITLE}</div>
    28           <!-- BEGIN download -->
    29           <div class="download">[ <a href="{download.U_DOWNLOAD}" title="{L_DOWNLOAD_HINT}">{L_DOWNLOAD}</a> ]</div>
    30           <!-- END download -->
    31                   <!-- BEGIN legend -->
    32           <div class="commentImage">{legend.COMMENT_IMG}</div>
    33                   <!-- END legend -->
    34                   </div>
    35           <table style="width:100%;">   
    36             <tr align="center" valign="middle">
    37                           <td style="width:30%;">
    38                                 <!-- BEGIN previous -->
    39                                 <a class="none" href="{previous.U_IMG}" title="{L_PREV_IMG}{previous.TITLE_IMG}">
    40                                 <img style="border:none;" width="30" height="100" src="template/default/theme/left-arrow.jpg" alt="" />
    41                                   <img src="{previous.IMG}" class="thumbLink" style="margin-right:10px;margin-left:5px;" alt="{previous.TITLE_IMG}"/>
    42                                   </a>
    43                                 <!-- END previous -->
    44                           </td>
    45                           <td style="width:40%;">
    46                           <table style="margin:auto;margin-top:5px;margin-bottom:5px;">
    47                   <!-- BEGIN info_line -->
    48                   <tr>
    49                      <td class="menu" style="font-weight:bold;">{info_line.INFO} : </td>
    50                      <td class="menu" style="text-align:right;">{info_line.VALUE}</td>
    51                   </tr>
    52                   <!-- END info_line -->
    53                 </table>
    54                           </td>
    55                           <td style="width:30%;">
    56                                 <!-- BEGIN next -->
    57                                   <a  class="none" href="{next.U_IMG}" title="{L_NEXT_IMG}{next.TITLE_IMG}">
    58                                   <img class="thumbLink" src="{next.IMG}" style="margin-right:10px;margin-left:5px;" alt="{next.TITLE_IMG}"/>
    59                                   <img style="border:none;" class="thumbLink" width="30" height="100" src="template/default/theme/right-arrow.jpg" alt="" />
    60                                   </a>
    61                                 <!-- END next -->
    62                           </td>
    63                         </tr>
    64           </table>
    65           <!-- BEGIN favorite -->
    66           <div class="menu" style="text-align:center;margin:5px;">
    67           <a href="{favorite.U_FAVORITE}" title="{favorite.FAVORITE_HINT}">
    68                         <img src="{favorite.FAVORITE_IMG}" style="border:none;margin-left:5px;" alt="" />{favorite.FAVORITE_ALT}
    69                   </a>
    70           </div>
    71           <!-- END favorite -->
     1<!-- BEGIN information -->
     2<div class="information">{information.INFORMATION}</div>
     3<!-- END information -->
     4<div class="titrePage">
     5  <div id="gauche">{CATEGORY}</div>
     6  <div id="centre" class="nameImage">{TITLE}</div>
     7  <div id="droite">{PHOTO}</div>
     8</div>
    729
    73           <!-- BEGIN show_metadata -->
    74             [ <a href="{show_metadata.URL}">{L_PICTURE_SHOW_METADATA}</a> ]
    75           <!-- END show_metadata -->
     10<div id="imgBarMenu">
     11<div class="imgMenu" id="left">
     12  <a href="{U_HOME}" title="{L_HOME}">
     13        <img src="template/default/theme/categories.gif" alt="{L_HOME}" />
     14  </a>
     15</div>
     16<div class="imgMenu" id="left">
     17  <a href="{U_SLIDESHOW}" title="{L_SLIDESHOW}">
     18        <img src="template/default/theme/slideshow.gif" alt="{L_SLIDESHOW}" />
     19  </a>
     20</div>
     21<div class="imgMenu" id="left">
     22  <a href="{U_METADATA}" title="{L_PICTURE_METADATA}">
     23        <img src="template/default/theme/metadata.gif" alt="{L_PICTURE_METADATA}" />
     24  </a>
     25</div>
     26<!-- BEGIN favorite -->
     27<div class="imgMenu" id="right">
     28  <a href="{favorite.U_FAVORITE}" title="{favorite.FAVORITE_HINT}">
     29        <img src="{favorite.FAVORITE_IMG}" alt="{favorite.FAVORITE_ALT}" />
     30  </a>
     31</div>
     32<!-- END favorite -->
     33<!-- BEGIN download -->
     34<div class="imgMenu" id="right">
     35  <a href="{download.U_DOWNLOAD}" title="{L_DOWNLOAD}">
     36        <img src="template/default/theme/download.gif" alt="{L_DOWNLOAD}" />
     37  </a>
     38</div>
     39<!-- END download -->
     40<!-- BEGIN ecard -->
     41<div class="imgMenu" id="right">
     42  <a href="{ecard.U_ECARD}" title="{L_DOWNLOAD}">
     43        <img src="template/default/theme/eCard.gif" alt="{L_DOWNLOAD}" />
     44  </a>
     45</div>
     46<!-- END ecard -->
     47<!-- BEGIN admin -->
     48<div class="imgMenu" id="right">
     49  <a href="{U_ADMIN}" title="{L_ADMIN}">
     50        <img src="template/default/theme/properties.gif" alt="{L_ADMIN}" />
     51  </a>
     52</div>
     53<!-- END admin -->
     54</div>
    7655
    77           <!-- BEGIN hide_metadata -->         
    78             [ <a href="{hide_metadata.URL}">{L_PICTURE_HIDE_METADATA}</a> ]
    79           <!-- END hide_metadata -->
     56<a href="{U_HOME}">
     57  <img class="image" src="{SRC_IMG}" style="width:{WIDTH_IMG}px;height:{HEIGHT_IMG}px;" alt="{ALT_IMG}"/>
     58</a>
     59<!-- BEGIN legend -->
     60<div class="commentImage">{legend.COMMENT_IMG}</div>
     61<!-- END legend -->
    8062
    81           <!-- BEGIN metadata -->
     63<!-- BEGIN stop_slideshow -->
     64<div style="text-align:center;margin-bottom:5px;">
     65  [ <a href="{stop_slideshow.U_SLIDESHOW}" class="back" style="font-weight:bold;">{L_STOP_SLIDESHOW}</a> ]
     66</div>
     67<!-- END stop_slideshow -->
     68
     69<div id="gauche">
     70&nbsp;
     71  <!-- BEGIN previous -->
     72        <a class="none" href="{previous.U_IMG}" title="{L_PREV_IMG}{previous.TITLE_IMG}">
     73        <img style="border:none;" width="30" height="100" src="template/default/theme/left-arrow.jpg" alt="" />
     74          <img src="{previous.IMG}" class="thumbLink" style="margin-right:10px;margin-left:5px;" alt="{previous.TITLE_IMG}"/>
     75          </a>
     76  <!-- END previous -->
     77</div>
     78<div id="centre">
     79  <table style="margin:auto;margin-top:5px;margin-bottom:5px;">
     80          <!-- BEGIN info_line -->
     81          <tr>
     82                 <td class="menu" style="font-weight:bold;">{info_line.INFO} : </td>
     83                 <td class="menu" style="text-align:right;">{info_line.VALUE}</td>
     84          </tr>
     85          <!-- END info_line -->
     86  </table>
     87</div>
     88<div id="droite">
     89  <!-- BEGIN next -->
     90  <a  class="none" href="{next.U_IMG}" title="{L_NEXT_IMG}{next.TITLE_IMG}">
     91          <img class="thumbLink" src="{next.IMG}" style="margin-right:10px;margin-left:5px;" alt="{next.TITLE_IMG}"/>
     92          <img style="border:none;" class="thumbLink" width="30" height="100" src="template/default/theme/right-arrow.jpg" alt="" />
     93          </a>
     94  <!-- END next -->
     95  &nbsp;
     96</div>
     97<div style="clear:both"></div>
     98         <!-- BEGIN metadata -->
    8299          <table class="metadata">
    83100            <!-- BEGIN headline -->
     
    104121          <!-- END rate -->
    105122 
    106           <!-- BEGIN modification -->
    107           <div class="menu" style="text-align:center;margin:5px;">
    108             [ <a href="{U_ADMIN}">{L_ADMIN}</a> ]
    109           </div>
    110           <!-- END modification -->
     123
    111124          <div style="text-align:center;">{L_BACK}</div>
    112         </td>
    113         <td>&nbsp;</td>
    114       </tr>
     125<table class="tablecompact">
    115126      <!-- BEGIN comments -->
    116127      <tr align="center" valign="middle">
     
    129140                                          {comments.comment.COMMENT_DATE}
    130141                                        <!-- BEGIN delete -->
    131                                           <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>
     142                                          <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>
    132143                                        <!-- END delete -->
    133144                                          </td>
Note: See TracChangeset for help on using the changeset viewer.