source: branches/release-1_3/include/page_tail.php @ 342

Last change on this file since 342 was 290, checked in by gweltas, 20 years ago

Conformity with the XHTML 1.0 transitional standard
Creation of the following files :

  • template/default/header.php and template/default/footer.php to ensure a common standard
  • default.css to be CSS valid

Obsolescence of the following files :

  • template/default/theme/conf.php
  • template/default/style.inc.php

Custom galleries should reflect those changes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 613 bytes
Line 
1<?php
2$handle = $vtp->Open( './template/'.$user['template'].'/footer.vtp' );
3
4//------------------------------------------------------------- generation time
5$time = get_elapsed_time( $t2, get_moment() );
6$vtp->setGlobalVar( $handle, 'time', $time );
7
8$vtp->setGlobalVar( $handle, 'generation_time', $lang['generation_time'] );
9$vtp->setGlobalVar( $handle, 'version', $conf['version'] );
10$vtp->setGlobalVar( $handle, 'site_url', $conf['site_url'] );
11$vtp->setVarF( $handle, 'footer', './template/'.$user['template'].'/footer.htm' );
12
13//
14// Generate the page
15//
16
17$code = $vtp->Display( $handle, 0 );
18echo $code;
19?>
Note: See TracBrowser for help on using the repository browser.