File: /home/slyfwmm/foar/wp-content/themes/flexfit/page.php
<?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(); ?>
<div id="post-<?php the_ID(); ?>" class="post">
<div class="entry">
<?php the_content(); ?>
<?php wp_link_pages(array('before' => 'Pages: ', 'next_or_number' => 'number')); ?>
<?php $attachments = new Attachments( 'attachments' ); /* pass the instance name */ ?>
<?php if( $attachments->exist() ) : ?>
<h3>Allegati:</h3>
<div>
<?php while( $attachments->get() ) : ?>
<div style="width:600px;">
<div style="float:left; vertical-align:top;"><a href="<?php echo $attachments->url(); ?>"><?php echo $attachments->image( 'thumbnail' ); ?></a></div><div style="float:left; vertical-align:central; margin-left:4px; margin-top:10px; width:550px;"><a href="<?php echo $attachments->url(); ?>"><?php echo $attachments->field( 'title' ); ?></a></div>
</div>
<div style="clear:both;"></div>
<?php endwhile; ?>
</div>
<?php endif; ?>
</div>
<?php edit_post_link('Edit this entry.', '<p class="hidden">', '</p>'); ?>
</div>
<?php /*comments_template();*/ ?>
<?php endwhile; endif; ?>
</div>
<div id="sidebar" class="sidebar-right">
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>