-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront-page.php
34 lines (29 loc) · 864 Bytes
/
front-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
33
34
<?php get_header(); ?>
<section class="primary feature">
<div class="container">
<h2>Vehicle Repairs, Servicing and MOT</h2>
</div>
</section>
<div class="content">
<div class="container">
<?php dynamic_sidebar('front-page-sidebar'); ?>
</div>
<div class="container">
<div class="primary content">
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part('content', get_post_format()); ?>
<?php endwhile; ?>
</div>
<div class="secondary content" role="complementary">
<?php get_sidebar(); ?>
</div>
</div>
<div class="container">
<div class="message">
<p>
<strong>FREE</strong> Quotes and Advice!
</p>
</div>
</div>
</div>
<?php get_footer(); ?>