diff options
| author | David Aspinall | 2000-09-14 13:31:05 +0000 |
|---|---|---|
| committer | David Aspinall | 2000-09-14 13:31:05 +0000 |
| commit | a377479a7228bc45f065cd10fe69aec51dc5ce5a (patch) | |
| tree | 48d862bd4d781d4de392d17cbfe9ee3e01fbf53a /html/header.phtml | |
| parent | 38b4f479953024cdb0e2e6bc9ac4d4945852d326 (diff) | |
Updates
Diffstat (limited to 'html/header.phtml')
| -rw-r--r-- | html/header.phtml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/html/header.phtml b/html/header.phtml index 207c366d..dc54c4df 100644 --- a/html/header.phtml +++ b/html/header.phtml @@ -1,5 +1,5 @@ <!-- This is the header --> -<table width="100%"> +<table width="500"> <tr> <td width="190"> <a href="index.phtml"> @@ -8,8 +8,8 @@ </a> </td> <td> - <img src="images/pg-text.gif" alt="Proof General"> - <br> + <center> + <img src="images/pg-text.gif" alt="Proof General" width=175 height=76> <h1>Organize your proofs!</h1> <?php /* Header link generator. David Aspinall, June 1999. @@ -17,20 +17,20 @@ * Look for $WANTED in array. If not found, use default of "Home" * and fix $WANTED. Hrefs are given by page parameter to current doc. */ - $separator='<td><img src="images/bullethole.gif" alt="." align="top">'; + $separator='<td><img src="images/bullethole.gif" width=15 height=15 alt="." align="top">'; $WANTED=$HTTP_GET_VARS["page"]; print "<small><table><tr>\n"; $links_arr = array( "Home" => "main", - "News" => "news", "Features" => "features", "Download" => "download", "Documentation" => "doc", + "News" => "news", "Development" => "devel", "About" => "about", "Links" => "links" ); - $midpoint = "Download"; + $midpoint = $DEFAULT = $links_arr["Home"]; $wanted_okay = 0; for (reset($links_arr); $name = key($links_arr); next($links_arr)) { @@ -50,10 +50,10 @@ link_root($links_arr[$name],$name); } print "</td>\n"; - if ($name==$midpoint) print "</tr><tr>"; + if ($name=="Download" || $name=="Development") print "</tr><tr>"; } print "</tr></table></small>\n"; ?> - </tr> +</td></tr> </table> <!-- End of header -->
\ No newline at end of file |
