This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
cornerstone/content-home.php
Go to file<?php | |
/** | |
* The template used for displaying page content in page-home.php | |
* Will only display if there is content. Does not display the page title. | |
* @package cornerstone | |
*/ | |
?> | |
<?php if (get_the_content() != null) { ?> | |
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>> | |
<div class="entry-content"> | |
<?php the_content(); ?> | |
</div><!-- .entry-content --> | |
<footer class="entry-footer"> | |
<?php edit_post_link( __( 'Edit', 'cs' ), '<span class="edit-link">', '</span>' ); ?> | |
</footer><!-- .entry-footer --> | |
</article><!-- #post-## --> | |
<?php }?> |