File: /home/httpd/html/menvid.com/wp-content/themes/tubethemev2/home.php
<?php get_header(); ?>
<div id="wrapper">
<div class="breakme"></div>
<div id="content">
<div class="description">
<?php bloginfo('description'); ?>
</div>
<div class="breakme"></div>
<h2>Recently added videos as of <span id="clock"></span></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. If you feel that you should be staring at something a little more concrete, feel free browse the archives.</p>
</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(); ?>