Out of wordpress pages
Do you want to create pages out of wordpress, but have the wordpress theme? And follow the plugins? Or Do yo want to organise your pages outside of the wordpress database? Then follow this tutorial on how to make out of wordpress theme pages.
1. Make a blank page, and enter this header snippet at the top of the page: (remove spaces between the beginning < ? and the ending ? >
<?php require_once("/home/YOURUSERNAME/public_html/wp-blog-header.php");?>
<?php get_header(); ?>
2. Ofcourse you correct the path in the above snippet, to your own. If you own your own domain, just edit the username. However if you are on a freehost like awardspace, or you have a subdomain, ask your host about what your path is. Again, if wordpress isn't saved in the root directory, and it is in another folder, then put the name of the folder after the public_html bit in the snippet above.
3. Now put all your content below this snippet, and after everything, paste this. (remove spaces between the beginning < ? and the ending ? > )
<?php get_sidebar(); ?><?php get_footer(); ?>
4. Save your page with a .php extension, and you're done! And oh, if you don't have your sidebar, or if it's included in the header/footer, then delete the sidebar section from the above snippet. Done!