Content Card
**Site relevance:** FFTAC.org
**Memory type:** theme source memory
**Source path:** FFTAC/wp-content/themes/fftac-who-we-are/template-parts/content-card.php
**Size:** 0.6 KB
Summary
@package FFTAC Who We Are
Source Preview
This source file is short enough to preview directly on its source-memory page.
<?php
/**
* Card view for archives.
*
* @package FFTAC_Who_We_Are
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'post-card' ); ?>>
<?php if ( has_post_thumbnail() ) : ?>
<a class="post-thumbnail" href="<?php the_permalink(); ?>" aria-hidden="true" tabindex="-1">
<?php the_post_thumbnail( 'large' ); ?>
</a>
<?php endif; ?>
<div class="entry-meta">
<time datetime="<?php echo esc_attr( get_the_date( DATE_W3C ) ); ?>"><?php echo esc_html( get_the_date() ); ?></time>
</div>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
</article>