Hey @Mark_Beaumont you should be able to add topics/tags in by going to your blog template > going into your blog listing HTML (see image below) > and adding the following code where you want the topics/tags to show:
{% if content.topic_list %}
<p id="hubspot-topic_data">
{% for topic in content.topic_list %}
<a class="topic-link" href="{{ blog_tag_url(group.id, topic.slug)}}">{{ topic.name }}</a>{% if not loop.last %},{% endif %}
Hey @Mark_Beaumont you should be able to add topics/tags in by going to your blog template > going into your blog listing HTML (see image below) > and adding the following code where you want the topics/tags to show:
{% if content.topic_list %}
<p id="hubspot-topic_data">
{% for topic in content.topic_list %}
<a class="topic-link" href="{{ blog_tag_url(group.id, topic.slug)}}">{{ topic.name }}</a>{% if not loop.last %},{% endif %}