-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
101 lines (83 loc) · 2.07 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
/**
*
* Materia Lite WordPress Theme by Iceable Themes | https://www.iceablethemes.com
*
* Copyright 2017 Mathieu Sarrasin - Iceable Media
*
* Page Template
*
*/
get_header();
?>
<main class="container">
<?php
get_template_part( 'part-title' );
?>
<div id="single-container" class="single-container with-sidebar">
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
?>
<div id="page-<?php the_ID(); ?>" <?php post_class( 'entry-wrap' ); ?>>
<?php
/* Post thumbnail ( Featured Image ) */
if ( '' !== get_the_post_thumbnail() ) :
?>
<div class="thumbnail">
<?php
the_post_thumbnail(
'large',
array(
'class' => '',
)
);
?>
</div>
<?php
endif;
?>
<div id="page-container" class="post-content entry-content">
<?php the_content(); ?>
</div>
<?php
wp_link_pages(
array(
'before' => '<br class="clear" /><div class="paged_nav"><span>' . __( 'Pages:', 'materia-lite' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'next_or_number' => 'number',
'nextpagelink' => __( 'Next page', 'materia-lite' ),
'previouspagelink' => __( 'Previous page', 'materia-lite' ),
'pagelink' => '%',
'echo' => 1,
)
);
?>
</div>
<?php
// Display comments section only if comments are open or if there are comments already.
if ( comments_open() || '0' !== get_comments_number() ) :
?>
<div class="comments">
<?php comments_template( '', true ); ?>
</div>
<?php
endif;
endwhile;
else : // Empty loop ( this should never happen! )
?>
<h2><?php esc_html_e( 'Not Found', 'materia-lite' ); ?></h2>
<p><?php esc_html_e( 'What you are looking for isn\'t here...', 'materia-lite' ); ?></p>
<?php
endif;
?>
</div>
<div id="sidebar-container">
<?php get_sidebar(); ?>
</div>
</main>
<?php
get_footer();