-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
40 lines (35 loc) · 1014 Bytes
/
single.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
<?php get_header(); ?>
<div id="p-canvas">
<div id="top-section">
<div class="wrapper">
<div id="logo-area">
<?php pp_theme_image('logo.png')?>
</div>
<div id="menu">
<ul><?php pp_get_menu(); ?></ul>
</div>
<div id="search-form">
<?php pp_get_search_form()?>
</div>
</div>
<div class="clear"></div>
</div>
<div id="banner">
<?php pp_theme_image('banners/banner_walking_sky.jpg')?>
</div>
<div id="content">
<?php
while ( have_posts() ) : the_post();
echo '<h2>';
the_title();
echo '</h2>';
the_content();
endwhile;
?>
</div>
<div id="footer">
<!--?php define('WP_USE_THEMES', false); get_footer(); ?-->
©Copyright 2012 PMS Ministry. All rights reserved<br />
<a href="/wp-admin/">Admin</a>
</div>
</div>