{# # Card Component (Bootstrap 5) # # Reusable card component for list/grid display. # # Expected context: # post.title - Card title # post.permalink - Card link URL # post.excerpt - Card description text # post.thumbnail - Optional thumbnail URL # # @package WcBootstrap # @since 0.1.0 #}
{% if post.thumbnail is defined and post.thumbnail %} {{ post.title|esc_attr }} {% endif %}

{{ post.title|esc_html }}

{% if post.excerpt is defined and post.excerpt %}

{{ post.excerpt|wp_kses_post }}

{% endif %} {% block card_meta %}{% endblock %}
{% block card_footer %}{% endblock %}