Overview
Download
Installation
Docs
Tutorial
Credits
Page Source
Hosted by: Convolution
|
Source of template.plp
Back
- <:
- sub code { :>
- <table width="100%" cellspacing=0 cellpadding=15>
- <tr><td bgcolor="#E0E0E0" style="background-color:#E0E0E0;">
- <font folor=green face="fixedsys,courier new,courier,fixed" style="color:green;">
- <:= shift :>
- </font>
- </td></tr></table>
- <: }
- sub title {
- print "<h2>$_[0]</h2>";
- }
- sub item { :>
- <div style="margin-top: 1em; color: black; font-size:larger; font-weight: bold;">
- <:= shift :>
- </div>
- <br>
- <: }
- :><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <html>
- <head><title>PLP - <:= $title :></title>
- <STYLE TYPE="text/css"><!--
- body, td {background-color: white; font-family: arial,helvetica,sans serif;
- font-size: 10pt; color: gray;}
- a {color: black;}
- a:visited {color: gray; }
- a:Hover {color: green;}
- .navi {color: silver; padding-left: 10px; padding-right: 25px;}
- .navi a {color: yellow; }
- .navi a:visited {color: yellow; }
- .navi a:hover {color: #FFCC00;}
- .main {color: gray; padding-left: 10px; padding-right: 5px;}
- --></STYLE>
- </head>
- <body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>
- <table width=780 cellspacing=0 cellpadding=0 border=0>
- <tr>
- <td width=128 valign=top nowrap><img src="/pix/logolinks.gif" width=128 height=149 alt="" border=0></td>
- <td width=629 valign=top nowrap background="/pix/topstripe.gif"><img src="/pix/logorechts.gif" width=159 height=149 alt="" border=0></td>
- <td width=23 valign=top nowrap><img src="/pix/topright.gif" width=23 height=149 alt="" border=0></td>
- </tr>
- <tr>
- <td background="/pix/navback.gif" align=left valign=top class=navi>
- <br>
- <:
- @pages = (
- [Overview => '/index.plp'],
- [Download => '/files.plp'],
- [Installation=> '/install.plp'],
- [Docs =>'/pod.plp'],
- [Tutorial => '/tutorial.plp'],
- [Credits =>'/credits.plp'],
- (defined $nosource ? () : (
- ['<br>'],
- ['Page Source' => "/source$ENV{PLP_NAME}"],
- )),
- ['<br>Hosted by:<br>'],
- [Convolution => 'http://www.convolution.nl/'],
- );
- $i = 0;
- for (@pages){
- $i++;
- if (!$_->[1]){
- print $_->[0];
- }elsif ($ENV{PLP_NAME} eq $_->[1]){
- print qq{<strong>$_->[0]</strong><br>\n};
- }else{
- print qq{<a href="$_->[1]">$_->[0]</a><br>\n};
- }
- }
- :>
- </td>
- <td valign="top" align="left" class="main">
- <: PLP_END { :>
- </td><td background="/pix/mainstripe.gif"></td></tr>
- <tr><td><img src="/pix/1.jpg" width=128 height=50 alt=""><br></td>
- <td> </td><td><img src="/pix/2.gif" width=23 height=50 alt=""><br></td></tr>
- </table>
- </body>
- </html>
- <: } :>
-
| |