-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
39 lines (31 loc) · 1.04 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
33
34
35
36
37
38
39
<?php get_header(); ?>
<?php if (get_post_meta($post->ID, 'banner', true)) { // begin check for spotlight ?>
<!-- Begin Spotlight -->
<div id="spotlight">
<img id="spotlight-main-image" src="<?php echo get_post_meta($post->ID, 'banner', true); ?>" alt="Main Spotlight Image" width="600" height="340" />
<blockquote id="spotlight-main-quote">
<?php quotescollection_quote(); ?>
</blockquote>
</div>
<!-- End Spotlight -->
<?php } // end check for spotlight ?>
<!-- Begin Content -->
<div id="content">
<!-- Begin Text -->
<div id="text">
<div id="breadcrumbs">
<?php bcn_display(); ?>
</div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article id="page-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
</article>
<?php endwhile; endif; ?>
<?php get_child_pages(); ?>
</div>
<!-- End Text -->
<?php get_sidebar(); ?>
</div>
<!-- End Content -->
<?php get_footer(); ?>