HEX
Server: Apache
System: Linux webd003.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/slyfwmm/foar/wp-content/themes/flexfit/page-archives.php
<?php
/*
Template Name: Archives Page
*/
?>

<?php get_header(); ?>

<div id="page" class="border-top clearfix">
	
	<div id="subtitle">
		
		<h1><?php the_title(); ?></h1>
		
		<div id="breadcrumb"><?php the_breadcrumb(); ?></div>
		
		<div class="hr4"><span class="seperator"></span><span class="lightborder"></span></div>
	
	</div>

	<div id="content-part">
	
		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
	 			
				<?php the_content(); ?>
				
				<h4><?php _e('Latest Posts', 'framework'); ?></h4>
				<ul>
				<?php $archives = get_posts('numberposts=10'); foreach($archives as $post) : ?>
				  	 				    
				  <li><a href="<?php the_permalink(); ?>"><?php the_title();?></a></li>
				  
				<?php endforeach; ?>
				</ul> 		
				
				<div class="hr"></div>		
						
				<h4><?php _e('Browse by Category', 'framework'); ?></h4>
				<ul>
				    <?php wp_list_categories( 'title_li=' ); ?>
				</ul>
				
				<div class="hr"></div>			 				
						
				<h4><?php _e('Browse by Month', 'framework'); ?></h4>
				<ul>
					<?php wp_get_archives('type=monthly'); ?>
				</ul>	 				
						
				<?php wp_link_pages(); ?>
	 				
	 		<?php endwhile ?>
	 		
	 	<?php endif ?>
	
	</div>
	
	<div id="sidebar" class="sidebar-right">
		<?php get_sidebar(); ?>
	</div>

</div>

<?php get_footer(); ?>