{% set card_style = '' %} {% set text_style = 'text-dark' %} {% set badge_style = 'badge-dark' %} {% if post.extra.style and post.extra.style == 'fill' %} {% set card_style = 'bg-' ~ post.extra.color %} {% if post.extra.color != 'light' %} {% set text_style = 'text-white' %} {% set badge_style = 'badge-light text-' ~ post.extra.color %} {% endif %} {% else %} {% set card_style = 'border border-' ~ post.extra.color %} {% if post.extra.color %} {% set badge_style = 'badge-' ~ post.extra.color %} {% endif %} {% endif %} {% if post.extra.external_url %} {% set post_url = post.extra.external_url %} {% else %} {% set post_url = post.permalink %} {% endif %}

{{ post.title }}

{% if post.taxonomies.tags %}{% for tag in post.taxonomies.tags %} {% if not current_tag or tag == current_tag %} {{ tag }} {% endif %} {% endfor %}{% endif %}

{% if post.description %} {{ post.description }} {% else %} {{ post.content | striptags | truncate(length=150, end=" read more...") | safe }} {% endif %}