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

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_aside_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-asterisk"></span>
  8. <?php the_title(); ?>
  9. </a>
  10. </h2>
  11. <!-- Post content -->
  12. <div class="post-content">
  13. <?php } else { ?>
  14. <div class="post-content">
  15. <h2><a href="<?php echo get_permalink(); ?>"><span class="fa fa-asterisk notitle"></span></a></h2>
  16. <?php } ?>
  17. <?php
  18. if ( has_post_thumbnail() ) {
  19. the_post_thumbnail( 'thumbnail' );
  20. }
  21. ?>
  22. <?php
  23. if ( get_theme_mod( 'portage_aside_excerpt' ) == '1' ) {
  24. the_excerpt();
  25. } else {
  26. the_content();
  27. }
  28. ?>
  29. <div class="clear"></div>
  30. </div><!-- end post content -->
  31. <?php get_template_part( 'inc/excerpt', 'short-meta' ); ?>
  32. </div><!-- end "Entry" -->