-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
32 lines (31 loc) · 1.4 KB
/
page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php get_header(); ?>
<section id="banner-bottom">
<div class="container">
<h1>Car Tips</h1>
<p>Don't run the risk of buying a used car with costly hidden problems. Get a detailed vehicle history report AND learn what
to look for when shopping for a used car.</p>
</div> <!-- end .container -->
<iframe src="http://www.facebook.com/plugins/like.php?app_id=130407713718629&href&send=false&layout=standard&width=160&show_faces=false&action=like&colorscheme=light&font&height=35" style="border:none; overflow:hidden; width:160px; height:40px;"></iframe>
</section>
</header> <!-- end #banner -->
<div id="content">
<div id="main" role="main">
<div class="container">
<?php get_search_form(); ?>
<?php while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" class="excerpt">
<header>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</header>
<div class="entry-content">
<?php the_content(); ?>
</div> <!-- end .entry-content -->
</article>
<?php endwhile; ?>
</div> <!-- end .container -->
</div> <!-- end #main -->
<?php get_sidebar(); ?>
<div class="clear"></div>
</div> <!-- end #content -->
</div> <!-- end #wrap/.container -->
<?php get_footer(); ?>