genesis
This commit is contained in:
parent
48120b34cc
commit
9da632147e
1 changed files with 39 additions and 0 deletions
39
lib/WebGUI/Operation/WebGUI.pm
Normal file
39
lib/WebGUI/Operation/WebGUI.pm
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
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;
|
||||||
Loading…
Add table
Add a link
Reference in a new issue