39 lines
2.7 KiB
Perl
39 lines
2.7 KiB
Perl
package WebGUI::Operation::WebGUI;
|
|
|
|
#-------------------------------------------------------------------
|
|
# WebGUI is Copyright 2001-2003 Plain Black LLC.
|
|
#-------------------------------------------------------------------
|
|
# Please read the legal notices (docs/legal.txt) and the license
|
|
# (docs/license.txt) that came with this distribution before using
|
|
# this software.
|
|
#-------------------------------------------------------------------
|
|
# http://www.plainblack.com info@plainblack.com
|
|
#-------------------------------------------------------------------
|
|
|
|
use Exporter;
|
|
use strict;
|
|
use WebGUI::Session;
|
|
|
|
our @ISA = qw(Exporter);
|
|
our @EXPORT = qw(&www_genesis);
|
|
|
|
#-------------------------------------------------------------------
|
|
sub www_genesis {
|
|
$session{page}{styleId} = -100000;
|
|
my $output = '<html><head><title>About WebGUI</title>
|
|
<style>.big {font-size: 23px;}</style>
|
|
</head><body bgcolor="#ef4200" text="black" link="white" vlink="white">
|
|
<br><br><br><br>
|
|
<div align="center" width="100%" height="100%"><div style="width: 400px; font-family: helvetica; font-size: 13px;" align="left">
|
|
<div style="font-family: times new roman, times, serif; font-size: 18px;"><i>
|
|
And the Internet was without form, and <span class="big">void;</span> and <span class="big">darkness</span> was upon the face of the web. And Plain Black formed WebGUI of the dust of tags and script, and <span class="big">breathed</span> into the web the breath of life; and content became a <span class="big">living</span> soul.
|
|
</i></div><br><br><br>
|
|
<div align="right">Ruling WebGUI, 2:7</div>
|
|
</div></div>
|
|
<br><br><br><br>
|
|
</body></html>';
|
|
return $output;
|
|
}
|
|
|
|
|
|
1;
|