-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.php
executable file
·34 lines (28 loc) · 940 Bytes
/
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
<?php
/**
* @package WordPress
* @subpackage skeleton
* Template Name: Default Page
*/
?>
<?php include ("header.php") ?>
<!-- Begin Template: page.php -->
<div id="content">
<div class="wrapper">
<div class="section twothird left">
<div class="section full text">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1 class="pagetitle"><?php the_title(); ?></h1>
<?php the_content(__('')); ?>
<?php endwhile; else: endif; ?>
</div> <!-- END .section full text -->
</div> <!-- END .section twothird -->
<div class="section onethird right sidebar">
<div class="full widgets list">
<?php include 'includes/page.sidebar.php'; ?>
</div> <!-- END .section -->
</div> <!-- END .section onethird -->
</div> <!-- END .wrapper -->
</div> <!-- END #content -->
<!-- End Template: page.php -->
<?php include ("footer.php") ?>