-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.php
More file actions
106 lines (80 loc) · 2.49 KB
/
template.php
File metadata and controls
106 lines (80 loc) · 2.49 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
###### template ######
## by weibo at 2011-12-23 ##
#usage:
#
# include("template.php");
# echoHtmlHead("page title");
// custom css and js script
# echoPageHeader();
// main content
# echoPageFooter();
#
/////////////////////////////////////////
function echoHtmlHead($title){
echo <<< EOF
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/style.css" media="all" />
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="css/style-ie.css" />
<![endif]-->
<title>Simon Lab -- $title</title>
<script type="text/javascript" src="js/common.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
EOF;
}
function echoPageHeader(){
echo <<< EOF
</head>
<body>
<div id="header">
<div id="social">
<span>[<a href="#">中文</a>|<a href="#">English</a>]</span>
<span><a href="#">Help</a></span>
<span><a href="#">Login</a></span>
<!--<a href="#"><img src="images/email.png" width="26" height="26" alt="email" /></a>-->
</div>
<form action="search2.php" method="get" id="search" name="quickQ">
<div class="field-holder">
<input name="keyword" type="text" class="field" value="search" title="Quick search" onfocus="this.select()" />
</div>
<input type="button" class="button" value="Search" onclick="loading();this.form.submit()" />
<div class="cl"> </div>
</form>
</div>
<ul class="dropdown"><!-- menu -->
<li><a href="index.php">Home</a></li>
<li><a href="#">Search</a>
<ul class="sub_menu">
<li><a href="seq-search.php">Sequence</a></li>
</ul>
</li>
<li><a href="#">Analysis</a>
<ul class="sub_menu">
<li><a href="blast.php">BLAST</a></li>
<li><a href="#">Alignment</a></li>
</ul>
</li>
<li><a href="#">Contact Us</a></li>
</ul><!-- close menu -->
EOF;
}
function echoPageFooter(){
echo <<< EOF
<div id="top" class="topdiv">
<!-- <img src="images/loading.gif" alt="loading..." > -->
</div>
<div id="below" class="belowdiv"></div>
<div id="footer">
Organizer:bureau of Life Science and Biotechnology Chinese Academy of Sciences<br />
<a href="http://www.whiov.ac.cn">Wuhan Institute of Virology Chinese Academy of Sciences</a><br />
Address: Hongshan, Wuchang, Wuhan 430071, China Tel:027-87197000<br />
</div>
</body>
</html>
EOF;
}
?>