forked from jameskoster/highwind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent-page.php
More file actions
35 lines (21 loc) · 753 Bytes
/
content-page.php
File metadata and controls
35 lines (21 loc) · 753 Bytes
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
<?php
/**
* The template for displaying pages.
* @package highwind
* @since 1.0
*/
?>
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
<header class="page-header">
<?php highwind_content_header_top(); ?>
<h1 class="page-title" data-text="<?php the_title_attribute(); ?>"><?php the_title(); ?></h1>
<?php highwind_content_header_bottom(); ?>
</header><!-- /.page-header -->
<section class="article-content">
<?php
highwind_content_entry_top();
the_content();
wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'highwind' ) . '</span>', 'after' => '</div>' ) );
highwind_content_entry_bottom();
?>
</section><!-- /.article-content -->