<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Display tags on a blog post in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/651550#M29144</link>
    <description>&lt;P&gt;Thanks so much Albert, worked like a charm! Have a great weekend.&lt;/P&gt;</description>
    <pubDate>Fri, 17 Jun 2022 18:19:12 GMT</pubDate>
    <dc:creator>IPars</dc:creator>
    <dc:date>2022-06-17T18:19:12Z</dc:date>
    <item>
      <title>Display tags on a blog post</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/651030#M29131</link>
      <description>&lt;P&gt;I'm a HubSpot novice developing a blog and am trying to get the tags I've assigned to a post to appear on the post once published. Ideally they should be clickable (i.e., go to another page listing all of the blogs using that tag). From the bit of reading I've done it sounds like HubL is required? Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 20:44:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/651030#M29131</guid>
      <dc:creator>IPars</dc:creator>
      <dc:date>2022-06-16T20:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Display tags on a blog post</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/651423#M29137</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/403242"&gt;@IPars&lt;/a&gt;, this is possible and yes, HubL is required.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you check Hubspot's &lt;A href="https://developers.hubspot.com/docs/cms/building-blocks/templates/blog#blog-post-markup" target="_blank" rel="noopener"&gt;Blog template markup documentation&lt;/A&gt;, there's a great example that does exactly what you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% if content.tag_list %}
    &amp;lt;div class="blog-post__tags"&amp;gt;
      {% icon name="tag" style="SOLID" %}
      {% for tag in content.tag_list %}
        &amp;lt;a class="blog-post__tag-link" href="{{ blog_tag_url(group.id, tag.slug) }}"&amp;gt;{{ tag.name }}&amp;lt;/a&amp;gt;{% if not loop.last %},{% endif %}
      {% endfor %}
    &amp;lt;/div&amp;gt;
{% endif %}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The previous code should loop through all the tags assigned to your blog post and will display a link to the tag page.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2022 14:57:03 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/651423#M29137</guid>
      <dc:creator>albertsg</dc:creator>
      <dc:date>2022-06-17T14:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: Display tags on a blog post</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/651550#M29144</link>
      <description>&lt;P&gt;Thanks so much Albert, worked like a charm! Have a great weekend.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2022 18:19:12 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/651550#M29144</guid>
      <dc:creator>IPars</dc:creator>
      <dc:date>2022-06-17T18:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Display tags on a blog post</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/651634#M29146</link>
      <description>&lt;P&gt;Hey,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/403242"&gt;@IPars&lt;/a&gt;. Thanks for letting us know that worked &lt;span class="lia-unicode-emoji" title=":raising_hands:"&gt;🙌&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2022 20:59:54 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/651634#M29146</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2022-06-17T20:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Display tags on a blog post</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/1191115#M43952</link>
      <description>&lt;P&gt;This solution is technically correct. However hubspot documenation does not mention this object anywhere in their documentation. Hubspot says tags is the method for grabbing tags from the post on the &lt;A href="https://developers.hubspot.com/docs/reference/cms/hubl/tags/standard-tags#blog-content" target="_blank" rel="noopener"&gt;Standard Tags docs&lt;/A&gt;&amp;nbsp; and doesn't list any info for tags on the &lt;A href="https://developers.hubspot.com/docs/reference/cms/hubl/variables#blog-variables" target="_blank" rel="noopener"&gt;HubL variables docs.&lt;/A&gt;&amp;nbsp;The only place this is mentioned is the &lt;A href="https://developers.hubspot.com/docs/guides/cms/content/templates/types/blog" target="_blank" rel="noopener"&gt;Blog templates docs&lt;/A&gt;, which contains broken links to their github repo for their boilerplate template.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/363300"&gt;@Jnix284&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 16:45:43 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/1191115#M43952</guid>
      <dc:creator>EdCupaioli</dc:creator>
      <dc:date>2025-08-20T16:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: Display tags on a blog post</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/1191285#M43954</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/391779"&gt;@EdCupaioli&lt;/a&gt;&amp;nbsp;I've submitted feedback to our technical writers to address the issues with the documentation.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Aug 2025 00:09:33 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/1191285#M43954</guid>
      <dc:creator>Jnix284</dc:creator>
      <dc:date>2025-08-21T00:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Display tags on a blog post</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/1202680#M44154</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/391779"&gt;@EdCupaioli&lt;/a&gt;&amp;nbsp;following up to let you know the tech writers were able to complete the following updates earlier this week that should address these concerns:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;Updated the broken GitHub links to go to the correct places. In cases where we were linking to files that no longer exist, I linked to either the most relevant place or removed the link altogether and replaced the content.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Updated code samples to match whatever the latest version of the CMS boilerplate code is.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Added a section to the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://developers.hubspot.com/docs/cms/start-building/building-blocks/templates/blog#list-tags-on-a-blog-post" target="_blank" rel="noopener" data-saferedirecturl="https://www.google.com/url?q=https://developers.hubspot.com/docs/cms/start-building/building-blocks/templates/blog%23list-tags-on-a-blog-post&amp;amp;source=gmail&amp;amp;ust=1758116347907000&amp;amp;usg=AOvVaw2sOL28altfi4FvKp1NMZGu"&gt;&lt;SPAN&gt;blog template doc&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;that explains in more depth how the&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;tag_list&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;tag works (since that was the example they were looking for in the original Community thread).&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Updated the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://developers.hubspot.com/docs/cms/reference/hubl/variables#blog-variables" target="_blank" rel="noopener" data-saferedirecturl="https://www.google.com/url?q=https://developers.hubspot.com/docs/cms/reference/hubl/variables%23blog-variables&amp;amp;source=gmail&amp;amp;ust=1758116347907000&amp;amp;usg=AOvVaw23F7PtfJG_VpW_FPwyXc_P"&gt;&lt;SPAN&gt;blog variables reference&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;to include&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;tag_list&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;(from the original thread). Basically, the&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;content.topic_list&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;variable we were documenting before is an older alias for&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;tag_list&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;SPAN&gt;so this should make the doc more up to date. I also added an alert to the top of the blog variables section there to mention the&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;topic&lt;/CODE&gt;&lt;SPAN&gt;/&lt;/SPAN&gt;&lt;CODE&gt;tag&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;alias&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Updated some other HubL docs to use&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;tag&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;instead of&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;topic&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;(like the HubL tags, and some misc code block fixes&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 19 Sep 2025 13:28:27 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Display-tags-on-a-blog-post/m-p/1202680#M44154</guid>
      <dc:creator>Jnix284</dc:creator>
      <dc:date>2025-09-19T13:28:27Z</dc:date>
    </item>
  </channel>
</rss>

