vertical | project | technical | examples | links | # | |||||
project - summary - tutorial (2) (3) (4) (5) (6) (7) (8) (9) - usage (2) technical - reasoning - two passes - still tiny - sitemaps - variables - accessibility WAI SubSects examples - horizontal - vertical - tabbed (2) - multi section - printer style links - some hints - faq&issues - all features # - about me - our sitemap - download
(C) 2004-04-22 |
Vertical Navigation Bar<html><head><title>common title prefix <!--$title?--></title> <style> a:link { text-decoration : none ; color : #000080 ; } a:visited { text-decoration : none ; color : #200060 ; } .navlist { background-color : #E0F0FF ; width : 9em ; } H3 { text-align : right ; } </style> </head><body> <table cellspacing="0" cellpadding="4" width="100%"> <tr valign="top"><td class="navlist" > <center><em><!--$selected--></em></center> <hr><a href="index.html">Overview</a> <br>-<a href="intro.html">Introduction</a> <br>-<a href="where.html">Related Work</a> <hr><a href="examples.html">Examples</a> <br>-<a href="loremipsum.html">Lorem Ipsum</a> <br>-<a href="nietzsche.html">Nietzsche</a> <hr><a href="impressum.html">Impressum</a> <br><a href="site.html">sitemap</a> </td><td> </td></tr></table></body></html>
The vertical navigation bar consists of a
The title is set in the first line after which DC.meta information will be implanted. There is an explicit href to the sitemap that is generated from the meta information from other files - so the "site.htm" file is the sitefile containing the ~head~ source while ~body~ is generated which gets written to the output "site.html". This is different from other htm->html transformations. As a technical note: the mksite.sh script will generate a ~head~ sed that cuts away the line containing "</body>". Then ~head~ and ~body~ are executed and a final third execution is run that will only append one line to the output html being simply the one line containing "</body>" in the sitefile. Therefore it is possible to write a fairly complex outer decoration for the body page in the middle.
|