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.
 
 
 

42 lines
985 B

<!-- Post title info -->
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php portage_edit_post(); ?>
<?php if ( get_theme_mod( 'portage_aside_title') == '1' ) { ?>
<h2 id="post-<?php the_ID(); ?>" class="post-title">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<span class="fa fa-asterisk"></span>
<?php the_title(); ?>
</a>
</h2>
<!-- Post content -->
<div class="post-content">
<?php } else { ?>
<div class="post-content">
<h2><a href="<?php echo get_permalink(); ?>"><span class="fa fa-asterisk notitle"></span></a></h2>
<?php } ?>
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail( 'thumbnail' );
}
?>
<?php
if ( get_theme_mod( 'portage_aside_excerpt' ) == '1' ) {
the_excerpt();
} else {
the_content();
}
?>
<div class="clear"></div>
</div><!-- end post content -->
<?php get_template_part( 'inc/excerpt', 'short-meta' ); ?>
</div><!-- end "Entry" -->