content-hero.php 717 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The template part for displaying the first post in index view.
  4. *
  5. * @package Publication
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <div class="hentry-inner">
  10. <div class="entry-wrapper">
  11. <header class="entry-header">
  12. <div class="entry-meta">
  13. <?php publication_categories(); ?>
  14. </div><!-- .entry-meta -->
  15. <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
  16. </header><!-- .entry-header -->
  17. <div class="entry-summary">
  18. <?php the_excerpt(); ?>
  19. </div><!-- .entry-summary -->
  20. </div><!-- .entry-wrapper -->
  21. </div><!-- .hentry-inner -->
  22. </article><!-- #post-## -->