-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
executable file
·45 lines (34 loc) · 988 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
36
37
38
39
40
41
42
43
44
45
<?php
/**
* Single page template
*
* @package Rampart
* @since 1.0
*/
?>
<?php get_header(); ?>
<div id="primary">
<?php do_action( 'content_before' ); ?>
<div id="content" role="main" itemprop="mainContentOfPage">
<?php do_action( 'content_top' ); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1 class="entry-title" itemprop="headline">
<?php the_title(); ?>
</h1>
<div class="entry-content" itemprop="text">
<?php the_content(); ?>
</div><!--.entry-content-->
</div>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'template-parts/404' ); ?>
<?php endif; ?>
<?php get_template_part( 'template-parts/nav', 'single' ); ?>
<?php do_action( 'content_bottom' ); ?>
</div><!-- #content -->
<?php do_action( 'content_after' ); ?>
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>