File: /home/httpd/html/menvid.com/wp-content/themes/tubethemev2/index.php
<?php get_header(); ?>
<div id="wrapper">
<div class="breakme"></div>
<div id="content">
<h2><?php single_cat_title('Currently browsing '); ?></h2>
<div class="breakme"></div>
<div class="breakme"></div>
<div class="breakme"></div>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="item">
<div id="covershot">
<a href="<?php the_permalink() ?>">
<img src="<?php $my_meta = get_post_meta($post->ID,'_my_meta',TRUE); echo $my_meta['videothumbnail'];?>" alt="<?php the_title() ?>" />
</a>
</div>
<div id="post-title">
<a href="<?php the_permalink() ?>"><h3><?php $title = the_title('','',FALSE); echo substr($title, 0, 35); ?></h3></a>
</div>
<div id="meta">
<div id="ratings">
<?php if(function_exists('the_ratings')) { the_ratings(); } ?>
</div>
<!--THIS IS THE CUSTOM views to use on front page -->
<div id="views">
<?php if(function_exists('the_views')) { the_views(); } ?>
</div>
<!--////////////////////THIS IS THE CUSTOM length to use on front page -->
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<div id="fourofour">
<h1>No matching results</h1>
<p>You seem to have found a mis-linked page or search query with no associated results. Please trying your search again.</p>
<h2>or try our <a href="<?php bloginfo('url'); ?>/">recently added videos instead.</a></h2>
</div>
<?php endif; ?>
<div class="breakme"></div>
<?php if (function_exists('wp_corenavi')) wp_corenavi(); ?>
</div>
<?php get_sidebar(); ?>
<div class="breakme"></div>
</div>
<?php get_footer(); ?>