Gossamer Forum
Home : Products : Links 2.0 : Customization :

build non-links pages

Quote Reply
build non-links pages
before there was instructions in camelsoup.com, but now there`s nothing. I REALLY NEED THIS! PLEASE HELP!
Quote Reply
Re: [TomJ] build non-links pages In reply to
Ok, here is what I did:
i made a new template page.html on put it in my templates section. The I added to nph-build.cgi under

$t1 = time();
print "** Creating Top Rated Page. . .\n";
&build_rate_page;
print "** Done (", time - $t1, " s)!\n\n";

the next code:
$t1 = time();
print "** Creating the Page. . .\n";
&build_page_page;
print "** Done (", time - $t1, " s)!\n\n";

BUT WHAT SHOULD the &build_page_page;
code have in it???

i also added in site_html_templates:
sub site_html_page {
# --------------------------------------------------------

return &load_template ('page.html', {
%globals
});
}

Quote Reply
Re: [TomJ] build non-links pages In reply to
Hm, check out the following thread:

http://www.gossamer-threads.com/...?post=121215;#121215
Quote Reply
Re: [Tho.mas] build non-links pages In reply to
thanks a lot. you`re the best. Wink