HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/theflexguy.com/wp-content/themes/neoclassical/left_bar.php
<div id="left_bar" class="sidebar">
	<ul class="sidebar_list">
		<li class="widget">
			<h2>Navigation</h2>
			<ul>
<?php include (TEMPLATEPATH . '/nav_menu.php'); ?>

			</ul>
		</li>
<?php 
		if (!function_exists('dynamic_sidebar') || !dynamic_sidebar(1)) : ?>
		<li class="widget">
			<h2>Latest Blog Entries</h2>
			<ul>
<?php 
			query_posts('showposts=10');
			if (have_posts()) : 
				while (have_posts()) : the_post(); ?>
				<li><a href="<?php the_permalink() ?>"><?php the_title() ?></a></li>
<?php
				endwhile;
			endif; ?>
			</ul>
		</li>
<?php 
		endif; ?>
	</ul>
</div>