-
Notifications
You must be signed in to change notification settings - Fork 1
/
page-3-column.php
68 lines (44 loc) · 1.01 KB
/
page-3-column.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/*
Template Name: Generic 3-column
*/
get_header();
?>
<?php the_showcase(); ?>
<div class="page-title group">
<div class="wrap">
<div class="quarter"> </div>
<div class="three-quarter">
<h1><?php the_title() ?></h1>
</div>
</div>
</div>
<div class="wrap group three-column">
<div class="quarter left-menu">
<?php left_menu_display(); ?>
</div>
<div class="half">
<?php
while ( have_posts() ) : the_post(); ?>
<div class="entry-content">
<?php the_content(); ?>
</div>
<?php
endwhile;
?>
</div>
<div class="quarter sidebar">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('sidebar-generic') ) : ?><!-- no sidebar --><?php endif; ?>
</div>
<div class="three-quarter right">
<?php the_tab_box(); ?>
<?php the_accordions(); ?>
</div>
<?php the_wide_content(); ?>
</div>
<?php the_phototiles(); ?>
<?php the_buttons(); ?>
<div class="wrap">
<?php the_photo_grid(); ?>
</div>
<?php get_footer(); ?>