Thanks for the quick response! And sorry for not including much detail. I was hoping maybe somebody would think, "Oh, right, WordPress! I know the problem exactly!"
Here's the site with the problem:
http://www.gilsonforcouncil.com/test/
Don't judge the site harshly--I am currently bumbling through GetSimple to move my stopgap site off WordPress.
If you look at the source, you'll see that it stops right before the following code:
<?php
define('WP_USE_THEMES', false);
require('........./wp-blog-header.php');
query_posts('showposts=10');
?>
<?php
$posts = get_posts('numberposts=10&order=ASC&orderby=post_title');
foreach ($posts as $post) : start_wp(); ?>
<?php the_date(); echo "<br />"; ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php
endforeach;
?>
That EXACT code (inside an otherwise blank HTML document) produces the following:
http://www.gilsonforcouncil.com/test/test.php
I included the code into a page template for the home page. I realize that's not the best way to do it, but I couldn't quite figure out how to put it into either a page or a component. I'm using GetSimple version 2.03.1.
Thanks again!