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.

43 lines
1.0 KiB

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 if ( get_theme_mod( 'portage_quote_title') == '1' ) { ?>
  5. <h2 id="post-<?php the_ID(); ?>" class="post-title">
  6. <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
  7. <span class="fa fa-quote-left"></span>
  8. <?php the_title(); ?>
  9. <span class="fa fa-quote-right"></span>
  10. </a>
  11. </h2>
  12. <!-- Post content -->
  13. <div class="post-content">
  14. <?php } else { ?>
  15. <div class="post-content post-content-quote">
  16. <h2><a href="<?php echo get_permalink(); ?>"><span class="fa fa-quote-left notitle"></span></a></h2>
  17. <?php } ?>
  18. <?php
  19. if ( has_post_thumbnail() ) {
  20. the_post_thumbnail( 'thumbnail' );
  21. }
  22. ?>
  23. <?php
  24. if ( get_theme_mod( 'portage_quote_excerpt' ) == '1' ) {
  25. the_excerpt();
  26. } else {
  27. the_content();
  28. }
  29. ?>
  30. <div class="clear"></div>
  31. </div><!-- end post content -->
  32. <?php get_template_part( 'inc/excerpt', 'short-meta' ); ?>
  33. </div><!-- end "Entry" -->