2014-12-10 11:36:38 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-11-21 18:12:07 +00:00
|
|
|
* Partial template for content in page.php
|
2014-12-10 11:36:38 +00:00
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
|
|
|
|
2019-06-20 08:57:12 +00:00
|
|
|
// Exit if accessed directly.
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
2016-11-21 18:12:07 +00:00
|
|
|
?>
|
2018-09-10 21:59:04 +00:00
|
|
|
|
2016-11-01 16:13:23 +00:00
|
|
|
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<header class="entry-header">
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-12-10 09:07:59 +00:00
|
|
|
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
</header><!-- .entry-header -->
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php echo get_the_post_thumbnail( $post->ID, 'large' ); ?>
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<div class="entry-content">
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php the_content(); ?>
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php
|
2018-11-18 23:20:20 +00:00
|
|
|
wp_link_pages(
|
|
|
|
array(
|
|
|
|
'before' => '<div class="page-links">' . __( 'Pages:', 'understrap' ),
|
|
|
|
'after' => '</div>',
|
|
|
|
)
|
|
|
|
);
|
2016-11-21 18:12:07 +00:00
|
|
|
?>
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
</div><!-- .entry-content -->
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<footer class="entry-footer">
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php edit_post_link( __( 'Edit', 'understrap' ), '<span class="edit-link">', '</span>' ); ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
</footer><!-- .entry-footer -->
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2014-12-10 11:36:38 +00:00
|
|
|
</article><!-- #post-## -->
|