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/martyknows.com/wp-content/themes/bueno/page-templates/fullwidth.php
<?php
/**
 *
 * Template Name: Fullwidth Page
 *
 * @package bueno
 */

get_header(); ?>
	<div id="primary" class="span12">
		<div id="content" class="site-content" role="main">

		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>	
		<div class="page_wrap">
			<?php
			if ( has_post_thumbnail() ) {
				echo '<figure class="featured-thumbnail thumbnail">' . get_the_post_thumbnail( get_the_id(), 'fullwidth-post-thumbnail' ) . '</figure>';
			}
			?>	
			<h1 class="post-title"><?php the_title(); ?></h1>
			<div class="post_content">
				<?php the_content(''); ?>
				<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'bueno' ), 'after' => '</div>' ) ); ?>
			</div>
		</div>
		<?php endwhile; else: ?>
		
			<?php get_template_part( 'templates/no-results' ); ?>

    	<?php endif; ?>

		</div><!-- #content -->
	</div><!-- #primary -->

<?php get_footer(); ?>