Distribute job ad across the web.
authorshort <>
Thu, 16 Oct 2003 07:28:39 +0000 (07:28 +0000)
committershort <>
Thu, 16 Oct 2003 07:28:39 +0000 (07:28 +0000)
Index.html.pl
WebConfig.pm
project/captive/Index.html.pl

index 80c7dcb..9674490 100755 (executable)
@@ -33,6 +33,7 @@ require CGI;
 my $W=My::Web->init(
                "__PACKAGE__"=>__PACKAGE__,
                "title"=>'Homepage',
+               "no_job"=>1,
                );
 My::Web->heading();
 
@@ -52,7 +53,7 @@ from the safety of your favorite OS GNU/Linux. Well, the day of reckoning is at
 hand! Those nights lying awake feeling foolish for having that extra VFAT
 partition just to exchange files between GNU/Linux and MS-Windows are over!</p>
 
-<table border="0" style="margin: 4ex; padding: 2ex; background: #441111; font-size: larger;">
+<table border="0" style="margin: 4ex; padding: 2ex; background: #552222; font-size: larger;">
        <tr><td>
                <b>A programmer for hire:</b>
                <span style="color: #ffaaaa;">
index 4fa0fc1..502b9ec 100644 (file)
@@ -100,6 +100,22 @@ our %WebConfig=(
                "footing"=>sub () {
 #                      print "<h1>footing</h1>\n";
                        },
+               "footing_delimit"=>sub () {
+                       return if $My::Web::W->{"no_job"};
+                       print <<"HERE";
+<table border="0" style="margin: 4ex; padding: 2ex; background: #552222;">
+       <tr><td>
+               <b>A programmer for hire:</b>
+               <span style="color: #ffaaaa;">
+                       I am looking for new challenges.
+                       If you find the software here useful, please
+                       @{[ My::Web::a_href($My::Web::W->{"resume_url"},'consider me') ]}
+                       for your next software project.
+               </span>
+       </td></tr>
+</table>
+HERE
+                       },
                );
 
 1;
index c6e0b94..bba283c 100755 (executable)
@@ -40,6 +40,7 @@ my $W=My::Project->init_project(
 .stuff  { font-style: italic; font-size: larger; margin-left: 20%; margin-right: 10%; }
 .re     { font-style: italic; }
 ",
+               "no_job"=>1,
                );