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.

19 lines
467 B

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. <h2 id="post-<?php the_ID(); ?>" class="post-title">
  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-th"></span>';
  11. }
  12. ?>
  13. <?php the_title(); ?>
  14. </h2>
  15. <?php get_template_part( 'inc/content', 'main' ); ?>