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.

20 lines
511 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. <!-- closing tag in content-main.php -->
  4. <?php portage_edit_post(); ?>
  5. <?php do_action( 'portage_before_post_title' ); ?>
  6. <h2 id="post-<?php the_ID(); ?>" class="post-title">
  7. <?php
  8. if ( post_password_required() ) {
  9. echo '<span class="fa fa-key fa-rotate-90"></span>';
  10. } else {
  11. echo '<span class="fa fa-pencil"></span>';
  12. }
  13. ?>
  14. <?php the_title(); ?>
  15. </h2>
  16. <?php get_template_part( 'inc/content', 'main' ); ?>