forked from bennettscience/barhop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
20 lines (20 loc) · 814 Bytes
/
page.php
File metadata and controls
20 lines (20 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php theme_include('header'); ?>
<div name="post">
<div class="post-container">
<?php if(page_custom_field('page_featured_image')) : ?>
<div class="featured" style="background:url('<?php echo page_custom_field('page_featured_image')?>') " >
<?php else: ?>
<div class="featured" id="<?php echo page_id(); ?>">
<?php endif; ?>
<div class="title">
<h1><?php echo page_title($fallback=''); ?></h1>
</div>
</div> <!-- featured image -->
<article class="the-post">
<div class="content-container">
<p><?php echo page_content(); ?></p>
</div>
</article>
</div>
</div>
<?php theme_include('footer'); ?>