An updated theme (based on Atticus Finch) for ClassicPress
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
511 B

<!-- Post title info -->
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- closing tag in content-main.php -->
<?php portage_edit_post(); ?>
<?php do_action( 'portage_before_post_title' ); ?>
<h2 id="post-<?php the_ID(); ?>" class="post-title">
<?php
if ( post_password_required() ) {
echo '<span class="fa fa-key fa-rotate-90"></span>';
} else {
echo '<span class="fa fa-pencil"></span>';
}
?>
<?php the_title(); ?>
</h2>
<?php get_template_part( 'inc/content', 'main' ); ?>