source: branches/htmlform/templates/header.tmpl@ 451

Last change on this file since 451 was 451, checked in by Kris Deugau, 14 years ago

/branches/htmlform

Move Javascript from the header into its own file
Convert index page (master block summary) to template
Convert header to template, use template header in main.cgi
and search.cgi - going to leave admin.cgi out for now
Update HTML in header, index, footer to HTML 4.01 strict
See #3.

File size: 1.6 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2<html>
3<!-- DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
4 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
5<html xmlns="http://www.w3.org/1999/xhtml" -->
6
7 <head>
8 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
9 <title>[IP Database v<TMPL_VAR NAME=version>]</title>
10 <link rel="stylesheet" type="text/css" href="/ip/ipdb.css">
11 <link rel="stylesheet" type="text/css" href="/ip/local.css">
12 <script src="/ip/templates/widgets.js" type="text/javascript"></script>
13 </head>
14
15<body>
16
17<div id="bodyheader">
18<div id="hlogo">
19<a href="/ip/index.shtml"><img src="/ip/images/logo.png" style="border:0;" alt="[ Logo ]"></a>
20</div>
21<div id="homelink">
22<a href="/ip/index.shtml">[IP Database v<TMPL_VAR NAME=version> Home]</a>
23</div>
24</div>
25
26<div id="subheader">
27<div id="qsearch">
28<form method="post" action="/ip/cgi-bin/search.cgi">
29<fieldset><legend></legend>
30Quick Search:
31<input type="text" name="input" size="20" maxlength="50" class="regular">
32<input type="hidden" name="page" value="1">
33<input type="hidden" name="stype" value="q">
34<input type="submit" value="Go!" class="heading">
35<input type="button" value=" Help? " onclick="openHelp()" class="regular">
36&nbsp; &nbsp;<a href="/ip/cgi-bin/search.cgi">Complex Search</a>
37</fieldset>
38</form>
39</div>
40<TMPL_IF NAME=addperm>
41<div id="newlink"><a href="/ip/cgi-bin/main.cgi?action=assign">Add new assignment</a></div>
42</TMPL_IF>
43</div>
44
45<div id="main">
46<div id="utils">
47<a href="/ip/cgi-bin/main.cgi?action=nodesearch">Find by connection point</a>
48</div>
Note: See TracBrowser for help on using the repository browser.