coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: orphaze on May 10, 2006, 07:00:31 AM

Title: How to create custom page with theme layout
Post by: orphaze on May 10, 2006, 07:00:31 AM
I would like to create a page on my coppermine gallery called "Gear" where I can do a quick write up on what cameras I'm shooting with and such. How would I go about creating a php page that includes my current layout/theme and my html code for the write up? I have no custom headers or footers and I know how to add a custom nav link and all that good stuff, I'm just hung up on how to create the page itself.

I spent a bit of time hacking the faq.php page to accomplish this but it seemed sloppy and I really didn't understand what I was doing. I imagine there is a simple and elegant way to do this with a few lines of code (We newbies always say stuff like that don't we, but I really think it's true this time!) - I just need one of the many smart people around here to point me in the right direction ;-) Thanks!
Title: Re: How to create custom page with theme layout
Post by: Tranz on May 10, 2006, 07:17:16 AM
<?php 
define
('IN_COPPERMINE'true);
require(
'include/init.inc.php');
pageheader('Gear');
?>


quick write up on what cameras I'm shooting with and such

<?php
pagefooter
(); 
?>
Title: Re: How to create custom page with theme layout
Post by: orphaze on May 10, 2006, 07:23:46 AM
Worked perfectly - thanks!
Title: Re: How to create custom page with theme layout
Post by: gangavalli on July 16, 2006, 06:54:48 PM
Thanks,

That helped me too. :D