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.

21 lines
661 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_quote_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-quote-left"></span>
  9. <?php the_title(); ?>
  10. <span class="fa fa-quote-right"></span>
  11. </a>
  12. </h2>
  13. <?php } else { ?>
  14. <h2><span class="fa fa-quote-left notitle"></span></h2>
  15. <?php } ?>
  16. <?php get_template_part( 'inc/content', 'main' ); ?>