This repository has been archived by the owner on Jan 17, 2019. It is now read-only.
forked from jarvist/ICCC-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainheader.php
69 lines (58 loc) · 1.99 KB
/
mainheader.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!--<!DocType HTML Public "-//W3C//DTD HTML 4.0//EN">-->
<html>
<head>
<meta http-equiv="Content-Type" Content="text/html; charset=utf-8">
<meta Name="Generator" Content="Hand Coded">
<link rel="stylesheet" type="text/css" href="/caving/caving.css" title="style">
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-80065-2";
urchinTracker();
</script>
<title>Imperial College Caving Club</title>
</head>
<body bgcolor="#000000" text="#CCCCCC" link="#FFFFCC" vlink="#FFFFCC">
<!--<font face="Verdana, Helvetica,Sans-serif">-->
<?php
function begintextdatebox($title, $right)
{
echo '
<table align="center" class="rootmenu" bgcolor="#FFFFFF" border="0" cellpadding="2" cellspacing="0" width="90%">
<tr>
<td>
<table class="insidemenu" width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td class="titlemenu" align="left">
<p class="titlemenu" align="middle">';
echo $title;
echo'</p>
</td>
<td class="titlemenu" align="right">
<p class="titlemenu">';
echo $right;
echo '</p>
</td>
</tr>
<!--<tr>
</tr>-->
<tr>
<td class="menu" valign="top" colspan="2">'; }
function begintextbox($title)
{
echo '
<table class="rootmenu" bgcolor="#FFFFFF" border="0" cellpadding="2" cellspacing="0" width="100%">
<tr>
<td>
<table class="insidemenu" width="100%" border="0" cellspacing="0" cellpadding="3">
<tr>
<td class="titlemenu" align="center">
<p class="titlemenu">'; echo $title;
echo '</p>
</td>
</tr>
<tr></tr>
<tr>
<td class="menu">'; }
function endtextbox() { echo '</td> </tr> </table> </td></tr> </table> <br>',"\n";}
function endtextdatebox() { echo '</td> </tr> </table> </td></tr> </table> <br><br>',"\n";} ?>