forked from wearefuturegov/west-sussex-local-offer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
39 lines (28 loc) · 1.11 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(have_posts()): while(have_posts()): the_post(); ?>
<div class="content-wrapper">
<div class="container">
<?php the_breadcrumbs(); ?>
<h1 class="page-title"><?php the_title(); ?></h1>
<div class="layout-sidebar-right">
<article class="layout-sidebar-right__main-content">
<div class="content-area">
<?php the_content(); ?>
<p class="page-last-edited">Last updated <?php the_modified_time(" j F Y") ?></p>
</div>
</article>
<aside class="layout-sidebar-right__sidebar">
<?php the_children(); ?>
<?php the_related_pages(); ?>
<?php the_downloads(); ?>
<?php the_pin_button(); ?>
<?php if ( is_active_sidebar( "page_sidebar" ) ) : ?>
<?php dynamic_sidebar( "page_sidebar" ); ?>
<?php endif; ?>
</aside>
</div>
</div>
</div>
<?php endwhile; endif; ?>
<?php the_feedback_banner(); ?>
<?php get_footer(); ?>