For anybody installing in a site that is not the standard carterlake php site from Ken's recent distro:
then you have to custom code 8 wordpress theme files.
The files in the wordpress theme directory you need to edit have basically 3 sections of code:
[your weather site header section]
<!-- Begin wordpress code -->
[wordpress blog code in the middle section]
<!-- End wordpress code -->
[your weather site footer section]
My site was not the standard carterlake PHP site so I had to hand edit these files to put my site code in them in place of the header/footer sections.
The files I had to edit to modify the header and footer section were:
archive.php
archives.php
attachment.php
comments.php
index.php
page.php
search.php
single.php
there are other files in the same folder, but they do not need any code from your site.
It helps to just upload the files, then work on the index.php template file first and get that working and matching your site before editing the other php files in the wordpress theme directory. Be sure to add the CSS to your css file. Once you get the wordpress index working in your site template, then you can copy the header and footer part from your index file to the other files as needed.
We added <!-- Begin wordpress code --> <!-- End wordpress code --> tags in the files, so if someone needs to custom fit them into a different weather site, it is easier to find the wordpress code to use.