-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront-page.php
32 lines (28 loc) · 1.05 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
<?php
/**
* The homepage template file.
*
* @package WordPress
* @subpackage ChurchThemes
*
===================================================================================================
WARNING! DO NOT EDIT THIS FILE OR ANY TEMPLATE FILES IN THIS THEME!
To make it easy to update your theme, you should not edit this file. Instead, you should create a
Child Theme first. This will ensure your template changes are not lost when updating the theme.
You can learn more about creating Child Themes here: http://codex.wordpress.org/Child_Themes
You have been warned! :)
===================================================================================================
*/
get_header() ?>
<div id="wrapper3" class="container_12 grid-container">
<div class="grid_4 grid-33 alpha">
<?php dynamic_sidebar('Homepage Left') ?>
</div>
<div class="grid_4 grid-33">
<?php dynamic_sidebar('Homepage Center') ?>
</div>
<div class="grid_4 grid-33 omega">
<?php dynamic_sidebar('Homepage Right') ?>
</div>
</div>
<?php get_footer() ?>