content.php 899 B

12345678910111213141516171819202122232425262728
  1. <article id="post-<?php the_ID(); ?>" <?php post_class('home-content col-6'); ?>>
  2. <?php do_action( 'foto_before_entry' ); ?>
  3. <?php if( has_post_thumbnail() ) : ?>
  4. <figure class="entry-thumbnail">
  5. <a href="<?php the_permalink() ?>">
  6. <?php the_post_thumbnail('foto-home-thumbnail', array( 'class' => 'photo thumbnail', 'alt' => get_the_title(), 'title' => get_the_title()));?>
  7. </a>
  8. </figure>
  9. <?php endif; ?>
  10. <div class="entry-detail">
  11. <h2 class="entry-title">
  12. <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'foto' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
  13. </h2>
  14. <div class="entry-meta">
  15. <?php foto_entry_info(); ?>
  16. </div>
  17. </div><!-- end .entry-detail -->
  18. <?php do_action( 'foto_after_entry' ); ?>
  19. </article><!-- #post-<?php the_ID(); ?> -->