Improve titles on all pages
This commit is contained in:
@@ -43,7 +43,6 @@ class Homepage_Main extends SihnonFramework_Main {
|
||||
|
||||
$this->smarty->assign('base_uri', $this->base_uri);
|
||||
$this->smarty->assign('base_url', static::absoluteUrl(''));
|
||||
$this->smarty->assign('title', 'Homepage');
|
||||
|
||||
} break;
|
||||
|
||||
|
||||
7
source/webui/pages/cv.php
Normal file
7
source/webui/pages/cv.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
$smarty = Homepage_Main::instance()->smarty();
|
||||
|
||||
$smarty->assign('title', 'Projects');
|
||||
|
||||
?>
|
||||
7
source/webui/pages/projects.php
Normal file
7
source/webui/pages/projects.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
$smarty = Homepage_Main::instance()->smarty();
|
||||
|
||||
$smarty->assign('title', 'CV');
|
||||
|
||||
?>
|
||||
7
source/webui/pages/projects/3yp.php
Normal file
7
source/webui/pages/projects/3yp.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
$smarty = Homepage_Main::instance()->smarty();
|
||||
|
||||
$smarty->assign('title', 'Third Year Project');
|
||||
|
||||
?>
|
||||
7
source/webui/pages/projects/ripping-cluster.php
Normal file
7
source/webui/pages/projects/ripping-cluster.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
$smarty = Homepage_Main::instance()->smarty();
|
||||
|
||||
$smarty->assign('title', 'RippingCluster');
|
||||
|
||||
?>
|
||||
7
source/webui/pages/projects/sabayon-crepo.php
Normal file
7
source/webui/pages/projects/sabayon-crepo.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
$smarty = Homepage_Main::instance()->smarty();
|
||||
|
||||
$smarty->assign('title', 'Entropy Repositories');
|
||||
|
||||
?>
|
||||
7
source/webui/pages/projects/scgen.php
Normal file
7
source/webui/pages/projects/scgen.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
$smarty = Homepage_Main::instance()->smarty();
|
||||
|
||||
$smarty->assign('title', 'SCGen');
|
||||
|
||||
?>
|
||||
7
source/webui/pages/projects/sihnon-framework.php
Normal file
7
source/webui/pages/projects/sihnon-framework.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
$smarty = Homepage_Main::instance()->smarty();
|
||||
|
||||
$smarty->assign('title', 'Sihnon Framework');
|
||||
|
||||
?>
|
||||
7
source/webui/pages/projects/status-board.php
Normal file
7
source/webui/pages/projects/status-board.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
$smarty = Homepage_Main::instance()->smarty();
|
||||
|
||||
$smarty->assign('title', 'Status Board');
|
||||
|
||||
?>
|
||||
@@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>{$title}</title>
|
||||
<title>{if $title}{$title} -{/if} Ben Roberts</title>
|
||||
|
||||
<!-- JQuery //-->
|
||||
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
|
||||
|
||||
Reference in New Issue
Block a user