-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
35 lines (33 loc) · 869 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
35
<?php get_header(); ?>
<?php if(have_posts()) : the_post(); ?>
<section id="content" class="single-post">
<header class="single-post-header">
<div class="container">
<div class="twelve columns">
<h1><?php the_title(); ?></h1>
</div>
</div>
</header>
<div class="container">
<div class="eight columns">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'jeo' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
) );
?>
</div>
<div class="three columns offset-by-one">
<aside id="sidebar">
<ul class="widgets">
<?php dynamic_sidebar('general'); ?>
</ul>
</aside>
</div>
</div>
</section>
<?php endif; ?>
<?php get_footer(); ?>