-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsidebar.php
41 lines (40 loc) · 1.35 KB
/
sidebar.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
41
<?php
/* Template name: Sidebar */
get_header();
the_post();
?>
<section class="main-content">
<div class="container">
<div class="columns is-centered is-variable is-5">
<div class="column is-3">
<aside class="sidebar">
<?php
$parent = CC_Site::get_parent_page();
echo '<nav class="side-navigation padding-vertical-big">';
echo '<ul class="list-pages">';
wp_list_pages(
array(
'child_of' => $parent,
'show_date' => '',
'depth' => 3,
'title_li' => '',
)
);
echo '</ul>';
echo '</nav>';
dynamic_sidebar( 'page' );
?>
</aside>
</div>
<div class="column is-8">
<section class="entry-page-content">
<div class="text-format">
<?php the_content(); ?>
</div>
</section>
</div>
</div>
</div>
<?php get_template_part( 'inc/partials/entry/page', 'footer' ); ?>
</section>
<?php get_footer(); ?>