source: trunk/gsdl/macros/html.dm@ 7503

Last change on this file since 7503 was 7503, checked in by davidb, 20 years ago

Modification made to navigation bar so its position in the default location
of the page is optional. Useful when you want to include the navigation
bar somewhere else. It's straightforward enough to add text that include
the navigation bar in the a new place, but without this modification there
is a lot of editing to do to supress it also appearing in its default position.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 850 bytes
Line 
1# this file must be UTF-8 encoded
2
3package html
4
5_header_ {<html>
6<head></head>
7}
8
9_footer_ {</html>}
10
11_pagetitle_ {_collectionname_}
12
13_content_ {
14<frameset rows="68,*" noresize border=0>
15 <frame frameborder=0 src="_gwcgi_?e=_compressedoptions_&a=p&p=nav">
16 <frame frameborder=0 src="_cgiarghp_">
17 <noframes>
18 <p>_textframebrowser_</p>
19 </noframes>
20</frameset>
21}
22
23
24package nav
25
26_header_ {_cgihead_
27_htmlhead_
28<center>
29<table width=_pagewidth_><tr><td align=right>
30_javalinks_</td></tr></table>
31</center>
32}
33
34_faoheader_ [v=1] {_cgihead_
35_htmlhead_
36_javalinks_
37}
38
39_htmlhead_ {
40<html>
41<head>
42<title>_pagetitle_</title>
43<base target="_top">
44_globalscripts_
45</head>
46
47<body bgcolor="\#ffffff" text="\#000000" link="\#006666"
48 alink="\#cc9900" vlink="\#666633">
49}
50
51_footer_ {</body>
52</html>
53}
54
55_content_ {
56<center>
57_optnavigationbar_
58</center>
59}
Note: See TracBrowser for help on using the repository browser.