Hi thanks for having me!
I am new to Hubspot CMS
I am trying to make a custom blog listing template with custom blog listing module in it.
But some how my looping shows each blog title in to instead of their original title:
My blog listing module code is :
{% set button_caption = module.read_more_caption %}
{{contents}}
<div class="case-search-result">
{% for content in contents %}
{# Set featured image #}
{% set show_featured_image = false %}
{% if content.featured_image %}
{% if blog.listing_page_id %}
{% if module.featured_image %}
{% set show_featured_image = true %}
{% endif %}
{% else %}
{% if group.use_featured_image_in_summary %}
{% set show_featured_image = true %}
{% endif %}
{% endif %}
{% endif %}
{# End set featured image #}
<div class="case-card">
<div class="img-container">
{% if show_featured_image == true %}
<img src="{{content.featured_image}}" alt="">
{% endif %}
</div>
<div class="content-container">
<h4>{{ content.name }}</h4>
<p class="card-description">{{ content.post_list_content }}</p>
<a class="read-more" href="{{ content.absolute_url }}"><span class="underline">{{button_caption}}</span> ⟶</a>
</div>
</div>
{% endfor %}
</div>
Can anyone here correct me if i am wrong?
Thanks in advance!

