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.

36 lines
809 B

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. <h2 id="post-<?php the_ID(); ?>" class="post-title">
  5. <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
  6. <?php
  7. if ( post_password_required() ) {
  8. echo '<span class="fa fa-key fa-rotate-90"></span>';
  9. } else {
  10. echo '<span class="fa fa-video-camera"></span>';
  11. }
  12. ?>
  13. <?php the_title(); ?>
  14. </a>
  15. </h2>
  16. <!-- Post content -->
  17. <div class="post-content">
  18. <?php
  19. if ( has_post_thumbnail() ) {
  20. the_post_thumbnail( 'thumbnail' );
  21. }
  22. ?>
  23. <?php the_excerpt(); ?>
  24. <div class="clear"></div>
  25. </div><!-- end post content -->
  26. <?php get_template_part( 'inc/excerpt', 'entry-meta' ); ?>
  27. </div><!-- end "Entry" -->