I'm having trouble with my HubSpot blog. The article descriptions aren't showing up in the post blocks. Everything else is there, but the first paragraph of each article is missing. It's supposed to display that, but it's not working.
Here's the code I'm using for the blog section:
```hubl
<div class="blog-area">
<h2>Latest Posts</h2>
<ul>
{% set latest_articles = fetch_recent_posts("main", 3) %}
{% for article in latest_articles %}
<li>
<div class="post-box">
{% if article.main_image %}
<a class="post-thumbnail"
alt="{{ article.main_image_alt }}"
style="background-image: url('{{ article.main_image }}');"
href="{{ article.url }}">
</a>
{% endif %}
{% set main_category = article.categories | first %}
{% if main_category %}
<div class="post-content">
<div>
<span class="category-tag">{{ main_category }}</span>
{% endif %}
<h3><a href="{{ article.url }}">{{ article.title }}</a></h3>
<p class="snippet">{{ article.meta_description | default(article.summary, true) | truncatehtml(150, '...', false) }}</p>
</div>
<div>
<a class="read-more-btn" href="{{ article.url }}">
Continue reading
</a>
</div>
</div>
</div>
</li>
{% endfor %}
</ul>
<a class="view-all" href="/blog">See all posts</a>
</div>
Can anyone help me figure out why the descriptions aren’t showing? Thanks!