41 lines
1.5 KiB
PHP
41 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Template part for displaying results in search pages
|
|
*
|
|
* @package Navier_Instruments
|
|
*/
|
|
?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class('post-card animate animate-fade-up'); ?>>
|
|
<?php if (has_post_thumbnail()) : ?>
|
|
<div class="post-thumbnail">
|
|
<a href="<?php the_permalink(); ?>">
|
|
<?php the_post_thumbnail('navier-card'); ?>
|
|
</a>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="post-card-content">
|
|
<div class="post-meta">
|
|
<span class="post-type" style="background: var(--navier-gray-100); padding: var(--spacing-xs) var(--spacing-sm); border-radius: var(--border-radius-sm); font-size: 0.75rem; text-transform: uppercase;">
|
|
<?php echo esc_html(get_post_type_object(get_post_type())->labels->singular_name); ?>
|
|
</span>
|
|
<span class="post-date"><?php echo get_the_date(); ?></span>
|
|
</div>
|
|
|
|
<h3 class="post-card-title">
|
|
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
|
|
</h3>
|
|
|
|
<p class="post-excerpt"><?php echo esc_html(get_the_excerpt()); ?></p>
|
|
|
|
<a href="<?php the_permalink(); ?>" class="read-more">
|
|
<?php esc_html_e('View', 'navier-instruments'); ?>
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
<line x1="5" y1="12" x2="19" y2="12"></line>
|
|
<polyline points="12 5 19 12 12 19"></polyline>
|
|
</svg>
|
|
</a>
|
|
</div>
|
|
</article>
|