-
Notifications
You must be signed in to change notification settings - Fork 2
/
template-right-sidebar.php
60 lines (46 loc) · 1.47 KB
/
template-right-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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* Template Name: Right Sidebar Page
* Template Post Type: page, post
*
* Description: Displays a page with a Right hand sidebar.
*
* @package Ephemeris
* @since Ephemeris 1.4
*/
get_header(); ?>
<div id="maincontentcontainer">
<div id="content" class="grid-container site-content" role="main">
<?php do_action( 'ephemeris_before_main_grid' ); ?>
<div class="grid-75 tablet-grid-75 mobile-grid-100">
<?php
do_action( 'ephemeris_before_content' );
if ( have_posts() ) {
// Start the Loop
while ( have_posts() ) {
the_post();
if ( is_singular( 'post' ) ) {
get_template_part( 'template-parts/content', get_post_format() );
}
else {
get_template_part( 'template-parts/content', 'page' );
}
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() ) {
comments_template( '', true );
}
} // end of the loop
if ( is_singular( 'post' ) ) {
ephemeris_single_posts_pagination();
}
} else {
get_template_part( 'template-parts/no', 'results' ); // Include the template that displays a message that posts cannot be found
} // end have_posts()
do_action( 'ephemeris_after_content' );
?>
</div>
<?php get_sidebar(); ?>
<?php do_action( 'ephemeris_after_main_grid' ); ?>
</div> <!-- /#content.grid-container.site-content -->
</div> <!-- /#maincontentcontainer -->
<?php get_footer(); ?>