content-search.blade.php 308 B

123456789101112131415
  1. <article @php(post_class())>
  2. <header>
  3. <h2 class="entry-title">
  4. <a href="{{ get_permalink() }}">
  5. {!! $title !!}
  6. </a>
  7. </h2>
  8. @includeWhen(get_post_type() === 'post', 'partials.entry-meta')
  9. </header>
  10. <div class="entry-summary">
  11. @php(the_excerpt())
  12. </div>
  13. </article>