-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpage.php
107 lines (80 loc) · 2.09 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
102
103
104
105
106
107
<?php
/**
* Used in Search Results and for Recent Posts in Front Page panels.
*
* @author Terry Lin
* @link https://terryl.in/
*
* @package WordPress
* @subpackage Mynote
* @since 1.0.0
* @version 2.0.0
*/
get_header();
?>
<?php mynote_title_progress_bar(); ?>
<div class="data-schema is-page" itemscope itemtype="<?php mynote_article_schema(); ?>">
<?php
/**
* Hook: mynote_page_before
*
* @hooked mynote_post_metadata - 10
*/
do_action( 'mynote_page_before' );
?>
<div class="container">
<div class="row">
<main id="main-container" class="col" role="main">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : ?>
<?php the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'markdown-body' ); ?>>
<?php if ( has_post_thumbnail() ) : ?>
<?php mynote_post_figure(); ?>
<?php endif; ?>
<div itemprop="articleBody">
<?php
/**
* Hook: mynote_page_content_before
*/
do_action( 'mynote_page_content_before' );
the_content();
/**
* Hook: mynote_page_content_after
*/
do_action( 'mynote_page_content_after' );
wp_link_pages(
array(
'before' => '<div class="page-links">' . __( 'Pages:', 'mynote' ),
'after' => '</div>',
)
);
?>
</div>
</article>
<section class="modified-date" itemprop="dateModified" content="<?php the_modified_date( 'c' ); ?>">
<?php esc_html_e( 'Last modified: ', 'mynote' ); ?>
<?php the_modified_date(); ?>
</section>
<section class="tags">
<?php the_tags( '', '' ); ?>
</section>
<?php comments_template(); ?>
<?php endwhile; ?>
<?php else : ?>
<article>
<h1><?php esc_html_e( 'Sorry, nothing to display.', 'mynote' ); ?></h1>
</article>
<?php endif; ?>
</main>
</div><!-- .row -->
</div><!-- .container -->
<?php
/**
* Hook: mynote_page_after
*/
do_action( 'mynote_page_after' );
?>
</div>
<?php
get_footer();