mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
33 lines
1019 B
PHP
33 lines
1019 B
PHP
<?php
|
|
/** content-page.php
|
|
*
|
|
* The template for displaying page content in the page.php template
|
|
*
|
|
* @author Konstantin Obenland
|
|
* @package The Bootstrap
|
|
* @since 1.0.0 - 07.02.2012
|
|
*/
|
|
|
|
|
|
tha_entry_before(); ?>
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
<?php tha_entry_top(); ?>
|
|
|
|
<header class="page-header">
|
|
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
|
|
</header><!-- .entry-header -->
|
|
|
|
<div class="entry-content clearfix">
|
|
<?php
|
|
the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'the-bootstrap' ) );
|
|
the_bootstrap_link_pages(); ?>
|
|
</div><!-- .entry-content -->
|
|
<?php edit_post_link( __( 'Edit', 'the-bootstrap' ), '<footer class="entry-meta"><span class="edit-link label">', '</span></footer>' );
|
|
|
|
tha_entry_bottom(); ?>
|
|
</article><!-- #post-<?php the_ID(); ?> -->
|
|
<?php tha_entry_after();
|
|
|
|
|
|
/* End of file content-page.php */
|
|
/* Location: ./wp-content/themes/the-bootstrap/partials/content-page.php */
|