-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront-page.php
32 lines (27 loc) · 1 KB
/
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
<!--Get Header Function-->
<?php get_header(); ?>
<!--Begin Flexslider-->
<?php do_action('slideshow_deploy', '127'); ?>
<div class="herobox"><span>Welcome</span> to<br>
the Abe Keller Peace Education Fund</div>
<!--End Flexslider-->
<div id="mobilehero">
<img src="<?php echo get_template_directory_uri(); ?>/images/mobilehero.jpg" alt="Welcome to the Abe Keller Peace Education Fund" />
<h1><span>Welcome</span> to the<br>
Abe Keller Peace Education Fund</h1>
</div>
<!-- START CONTENT -->
<div id="content" class="seo">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>">
<?php the_content('<p class="serif">More »</p>'); ?>
</div>
<?php endwhile; endif; ?>
</div>
<!-- END CONTENT -->
<!--Begin Wigets-->
<div class="ctacontainer">
<?php dynamic_sidebar(2);?>
</div>
<!--Get Footer Function-->
<?php get_footer(); ?>