2014-12-10 11:36:38 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2019-11-14 17:16:31 +00:00
|
|
|
* Search results partial template
|
2016-11-21 18:12:07 +00:00
|
|
|
*
|
2014-12-10 11:36:38 +00:00
|
|
|
* @package understrap
|
|
|
|
*/
|
|
|
|
|
2019-06-20 08:57:12 +00:00
|
|
|
// Exit if accessed directly.
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
2016-11-21 18:12:07 +00:00
|
|
|
?>
|
2018-09-10 21:59:04 +00:00
|
|
|
|
2016-11-01 16:13:23 +00:00
|
|
|
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<header class="entry-header">
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2018-11-18 23:19:54 +00:00
|
|
|
<?php
|
|
|
|
the_title(
|
|
|
|
sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ),
|
|
|
|
'</a></h2>'
|
|
|
|
);
|
|
|
|
?>
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php if ( 'post' == get_post_type() ) : ?>
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<div class="entry-meta">
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php understrap_posted_on(); ?>
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
</div><!-- .entry-meta -->
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php endif; ?>
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
</header><!-- .entry-header -->
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<div class="entry-summary">
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php the_excerpt(); ?>
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
</div><!-- .entry-summary -->
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<footer class="entry-footer">
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php understrap_entry_footer(); ?>
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
</footer><!-- .entry-footer -->
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2014-12-10 11:36:38 +00:00
|
|
|
</article><!-- #post-## -->
|