- Timestamp:
- 07/21/07 14:14:35 (16 months ago)
- Location:
- branches/website/site
- Files:
-
- 2 modified
-
index.php (modified) (2 diffs)
-
template.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/website/site/index.php
r349 r508 1 <? 2 1 <?php 2 3 3 include("tlib.php"); 4 4 … … 32 32 $title = $pageInfo["title"]; 33 33 $desc = $pageInfo["desc"]; 34 34 35 35 // Prepare information for the template 36 36 $this->page = $page; -
branches/website/site/template.php
r451 r508 1 <html> 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 2 3 <head> 3 <title><? =$this->appName?>: <?=$this->title?></title>4 <title><?php echo $this->appName; ?>: <?php echo $this->title; ?></title> 4 5 <link rel="stylesheet" href="index.css" type="text/css" /> 5 6 </head> … … 9 10 <div id="menubar"> 10 11 <div id="menubar_contents"> 11 <? =$this->menu()?>12 <?php $this->menu(); ?> 12 13 </div> 13 14 </div> … … 17 18 <div id="contents_top"> </div> 18 19 <div id="contents_text"> 19 <h1><? =$this->title?></h1>20 <h2 class="description"><? =$this->desc?></h2>21 <? =$this->_getOutputBuffer()?>20 <h1><?php echo $this->title; ?></h1> 21 <h2 class="description"><?php echo $this->desc; ?></h2> 22 <?php echo $this->_getOutputBuffer(); ?> 22 23 </div> 23 24 <div id="contents_footer"> </div>
