<div class=“blog-item-post”>
<h3><a href=“{{ post.absolute_url }}”>{{ post.name }}</a></h3>
<div class=“blog-item-meta {{ ‘margin-bottom’ if post.post_body }}”>
<span class=“author-icon”>
{% icon
name=“{{ module.blog_item_style.icons.author.name }}”
style=“{{ module.blog_item_style.icons.author.type }}”
unicode=“{{ module.blog_item_style.icons.author.unicode }}”
%}
</span>
<a href=“https://{{ post.parent_blog.url_base }}{{ ‘/author/’~post.blog_author.slug }}” class=“blog-author”>{{ post.blog_author }}</a>
<span class=“date-posted”>
<span class=“date-icon”>
{% icon
name=“{{ module.blog_item_style.icons.date_icon.name }}”
style=“{{ module.blog_item_style.icons.date_icon.type }}”
unicode=“{{ module.blog_item_style.icons.date_icon.unicode }}”
%}
</span>
{{ post.created|datetimeformat(“%B %e, %Y”) }}</span>
{% if module.blog_list_settings.tag_style_settings.show_tag_in_blog_feed %}
{% if post.topic_list %}
<p class=“hubspot-topic_data”>
{% for topic in post.topic_list %}
<a class=“topic-link” href=“{{ blog_tag_url(group.id, topic.slug) }}”>{{ topic.name }}</a>
{% endfor %}
</p>
{% endif %}
{% endif %}
</div>
<p>{{ post.post_body|safe|striptags|truncate(130, true, ‘…’) }}</p>
</div>
</div>
</div>