Hi, i have started learning how to build wordpress themes and have a problem with the code below
Please can you help me to find where the problem is? Thank You!
<?php get_header(); ?>
<section class="container layout">
<section class="page_title">
<div class="title">Blog style 1</div>
<div class="slogan">Curabitur ultrices ultricies justo</div>
</section>
<div class="clear"></div>
<section class="grid_8">
<section id="blog">
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<!--============= ARTICLE BEGIN ===========-->
<article class="style1">
<div class="grid_3 img_pf_hover alpha"><a href="blog_post.html"><img src="<?php bloginfo('template_directory') ?>/images/assets/5.png" class="img212x142" alt="" /></a></div>
<!-- Article thumbnail end -->
<div class="grid_5 omega">
<div class="title"><h2><a href="blog_post.html">Qudos volutpat mattis tincidunt</a></h2></div>
<div class="clear"></div>
<div class="meta_data">Posted by <a href="#">Smartik</a> on October 11, 2011 in <a href="#">Web Design</a> category</div>
<div class="clear"></div>
<p>Donec eleifend pretium nunc. Vestibulum ac tortor ut nisi hendrerit tincidunt quis in felis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Etiam fermentum semper ligula ac bibendum...</p>
<div class="clear"></div><!-- Article description end -->
</div>
<div class="clear"></div>
</article>
<div class="clear"></div>
<!--============= ARTICLE END ===========-->
</section> <!-- End #blog -->
</section>
<?php get_sidebar(); ?>
</section> <!-- End section .container layout -->
<?php get_footer(); ?>
</section><!-- End section .wrap_block -->
</section> <!-- End section #wrap -->