File: /home/slyfwmm/incastiglionfiorentino/wp-content/themes/amplify/page.php
<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the wordpress construct of pages
* and that other 'pages' on your wordpress site will use a
* different template.
*
*/
get_header(); ?>
<div id="main_container">
<!-- IE7 float fix --><!--[if lt IE 7]><span class="iefix">.</span><![endif]-->
<div class="main">
<div class="entries_full">
<div class="entry_full">
<div class="box_twothirds mt35 pr60">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<h3 class="<?php if($count > 1) echo "mt25 "; ?>mb12"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<div class="mag_blog"><!-- magnifying glass div -->
<img src="<?php echo get_template_directory_uri(); ?>/scripts/timthumb.php?src=<?php if(get_field('large_image_value') != NULL) {echo get_field('large_image_value');} else {echo get_field( 'fullsize_value');} ?>&h=213&w=600&zc=1" alt="<?php the_title(); ?>" />
</div>
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '' . __( 'Pages:', 'amplify' ), 'after' => '' ) ); ?>
<?php endwhile; ?>
</div>
<!-- Begin Sidebar -->
<?php
if(get_field('custom_sidebar_value') != NULL)
{include get_field('custom_sidebar_value');}
else {include('sidebar.php');} ?>
<!-- end sidebar -->
<div class="clear"></div>
</div><!-- end div.entry -->
</div><!-- end div.entries -->
<div class="clear"></div>
</div><!-- end div#main -->
<div class="clear"></div>
</div><!-- end div#main_container-->
<?php get_footer(); ?>