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
625 B

3 years ago
3 years ago
3 years ago
3 years ago
  1. <!-- Post title info -->
  2. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  3. <?php portage_edit_post(); ?>
  4. <?php do_action( 'portage_before_post_title' ); ?>
  5. <?php if ( get_theme_mod( 'portage_status_title') == '1' ) { ?>
  6. <h2 id="post-<?php the_ID(); ?>" class="post-title">
  7. <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
  8. <span class="fa fa-at"></span>
  9. <?php the_title(); ?>
  10. </a>
  11. </h2>
  12. <?php } else { ?>
  13. <h2 class="notitle-h2"><span class="fa fa-at notitle"></span></h2>
  14. <?php } ?>
  15. <?php get_template_part( 'inc/content', 'excerpt' ); ?>