<?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: Custom sub-page for blog listing (e.g. /blog/all) with different modules &amp;amp; pagination in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Custom-sub-page-for-blog-listing-e-g-blog-all-with-different/m-p/1166274#M43320</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/944171"&gt;@jerequis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Yes, you can absolutely create sub-pages for your blog in HubSpot—like a /blog/all page that shows different content and layout from your main blog listing at /blog. This is a great way to organize your content better, create custom views for campaigns, or offer users a more tailored experience.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;What This Means in HubSpot:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;By default, HubSpot gives you one main blog listing page (usually /blog). If you want to build something like /blog/all with its own content, layout, and pagination, here are the tools and steps you'll use:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Tools You’ll Use:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;1.Custom Templates – So you can control how things look and behave on /blog/all.&lt;/SPAN&gt;&lt;/P&gt;
&lt;OL start="2"&gt;
&lt;LI&gt;&lt;SPAN&gt; Website Pages – Create a new page just like any landing or site page.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt; HubL (HubSpot's coding language) – To pull in blog posts and control pagination.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt; (Optional) Redirects – To manage clean URLs if needed.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;Steps to Set Up a Custom Blog Sub-Page (/blog/all):&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 1: Build a Custom Blog Listing Template&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;Go to Content &amp;gt; Design Manager.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Create a new HTML + HubL file. Select Blog Listing as the template type.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Name it something like custom-blog-all-listing.html.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;In this template, use HubL to load blog posts. Here's a simple example:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% set blog_posts = blog_recent_posts("default", 9999) %}

{% for post in blog_posts %}
  &amp;lt;div class="blog-post"&amp;gt;
    &amp;lt;h3&amp;gt;&amp;lt;a href="{{ post.absolute_url }}"&amp;gt;{{ post.name }}&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;
    &amp;lt;p&amp;gt;{{ post.post_list_summary_field }}&amp;lt;/p&amp;gt;
  &amp;lt;/div&amp;gt;
{% endfor %}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can customize this section to show images, dates, authors, etc.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 2: Add Pagination&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;HubSpot doesn't add pagination automatically on custom pages—you need to code it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Here's a simple pagination example:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% if contents.has_next_page or contents.has_previous_page %}
  &amp;lt;div class="pagination"&amp;gt;
    {% if contents.has_previous_page %}
      &amp;lt;a href="{{ blog_page_link(contents.current_page_num - 1) }}"&amp;gt;Previous&amp;lt;/a&amp;gt;
    {% endif %}

    {% for page_num in 1..contents.total_pages %}
      &amp;lt;a href="{{ blog_page_link(page_num) }}"
         {% if page_num == contents.current_page_num %}class="active"{% endif %}&amp;gt;
         {{ page_num }}
      &amp;lt;/a&amp;gt;
    {% endfor %}

    {% if contents.has_next_page %}
      &amp;lt;a href="{{ blog_page_link(contents.current_page_num + 1) }}"&amp;gt;Next&amp;lt;/a&amp;gt;
    {% endif %}
  &amp;lt;/div&amp;gt;
{% endif %}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 3: Create a New Page for /blog/all&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Go to Website Pages in your HubSpot account.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Create a new page and choose the custom template you just made.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Set the page URL to /blog/all.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Add any modules or text you want—this is your chance to make this page unique.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If needed, use HubL to filter content, like only showing posts with a certain tag:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% set featured_posts = blog_recent_tag_posts("default", "featured", 9999) %}
{% for post in featured_posts %}
  {# Show your custom post display here #}
{% endfor %}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 4: Link to /blog/all from Your Menu or CTA&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Make sure users can reach /blog/all by adding it to your navigation or buttons.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Things to Keep in Mind:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SEO: If this page shows the same posts as /blog, make sure to use canonical tags so Google doesn’t see it as duplicate content.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Maintenance: If you create multiple blog listings, use global modules to keep styling consistent.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Use HubDB (optional): If you want even more control (like mixing blog posts with other types of content), HubDB gives you powerful options.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope this will help you out. Please mark it as &lt;/SPAN&gt;&lt;STRONG&gt;Solution Accepted and upvote&lt;/STRONG&gt;&lt;SPAN&gt; to help another Community member.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Jun 2025 14:46:41 GMT</pubDate>
    <dc:creator>GRajput</dc:creator>
    <dc:date>2025-06-18T14:46:41Z</dc:date>
    <item>
      <title>Custom sub-page for blog listing (e.g. /blog/all) with different modules &amp; pagination</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Custom-sub-page-for-blog-listing-e-g-blog-all-with-different/m-p/1165901#M43302</link>
      <description>&lt;P&gt;Hello HubSpot community,&lt;/P&gt;&lt;P&gt;I have a question: is it possible to have “sub-pages” of a blog listing page (or its equivalent in HubSpot)? If so, what steps should I follow?&lt;/P&gt;&lt;P&gt;For example, my main blog slug is /blog, but Id like /blog/all to display different content and modules without affecting the primary listing and also to include pagination. Any guidance would be greatly appreciated!&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 19:19:27 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Custom-sub-page-for-blog-listing-e-g-blog-all-with-different/m-p/1165901#M43302</guid>
      <dc:creator>jerequis</dc:creator>
      <dc:date>2025-06-17T19:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Custom sub-page for blog listing (e.g. /blog/all) with different modules &amp; pagination</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Custom-sub-page-for-blog-listing-e-g-blog-all-with-different/m-p/1166136#M43308</link>
      <description>&lt;P&gt;Hi &lt;SPAN&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/944171"&gt;@jerequis&lt;/a&gt;&lt;/SPAN&gt; and welcome, it's a pleasure to see you here!&lt;BR /&gt;&lt;BR /&gt;Thanks for asking the HubSpot Community!&lt;BR /&gt;&lt;BR /&gt;Are you looking at having a subdomain for your blog listing page or a separate template for your blog listing pages, please?&lt;BR /&gt;&lt;BR /&gt;The more info, screenshots (without sensitive/confidential information), and details you can provide, the better the Community can assist.&lt;BR /&gt;&lt;BR /&gt;Also, I'd love to put you in touch with our Top Experts: Hi &lt;SPAN&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/123775"&gt;@danmoyle&lt;/a&gt;&lt;/SPAN&gt;, &lt;SPAN&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9259"&gt;@Mike_Eastwood&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/17186"&gt;@Anton&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;and &lt;SPAN&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/711889"&gt;@Humashankar&lt;/a&gt;&lt;/SPAN&gt; do you have suggestions to help &lt;SPAN&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/944171"&gt;@jerequis&lt;/a&gt;&lt;/SPAN&gt;, please?&lt;BR /&gt;&lt;BR /&gt;Have a wonderful day and thanks so much in advance for your help! &lt;span class="lia-unicode-emoji" title=":red_heart:"&gt;❤️&lt;/span&gt;&lt;BR /&gt;Bérangère&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2025 11:07:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Custom-sub-page-for-blog-listing-e-g-blog-all-with-different/m-p/1166136#M43308</guid>
      <dc:creator>BérangèreL</dc:creator>
      <dc:date>2025-06-18T11:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Custom sub-page for blog listing (e.g. /blog/all) with different modules &amp; pagination</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Custom-sub-page-for-blog-listing-e-g-blog-all-with-different/m-p/1166172#M43313</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/944171"&gt;@jerequis&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;short answer: it depends on your desired result&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Technically HS blogs have following "options":&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;/blog&lt;/STRONG&gt; &lt;EM&gt;(listing page)&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;/blog/article-name&lt;/STRONG&gt; &lt;EM&gt;(detail page)&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;/blog/tag/tag-name&lt;/STRONG&gt; &lt;EM&gt;(listing for all posts with this tag)&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;/blog/authors/author-name&lt;/STRONG&gt; &lt;EM&gt;(author page with all posts written by this author)&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;/hs-search-results&lt;/STRONG&gt; &lt;EM&gt;(global search result)&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Something you can do is creating a &lt;A href="https://developers.hubspot.com/docs/guides/cms/content/templates/types/blog" target="_blank" rel="noopener"&gt;custom blog listing template&lt;/A&gt; that will contain the main listing itself but also a "not simple listing view" &amp;lt;- this would be the "/all" slug in your case.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're not looking for a drag&amp;amp;drop experience of the listing page, the bare minimum of such custom template would look like this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% if is_listing_view %}
   Regular listing layout comes here
{% elif simple_list_page %}
   Custom layout for /all
{% endif %}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to preserve the drag&amp;amp;drop experience, create the whole layout in a custom module (might have benefits regarless of your dnd decision) and drop it into the template.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;hope this helps,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anton&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2025 11:27:39 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Custom-sub-page-for-blog-listing-e-g-blog-all-with-different/m-p/1166172#M43313</guid>
      <dc:creator>Anton</dc:creator>
      <dc:date>2025-06-18T11:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Custom sub-page for blog listing (e.g. /blog/all) with different modules &amp; pagination</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Custom-sub-page-for-blog-listing-e-g-blog-all-with-different/m-p/1166274#M43320</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/944171"&gt;@jerequis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Yes, you can absolutely create sub-pages for your blog in HubSpot—like a /blog/all page that shows different content and layout from your main blog listing at /blog. This is a great way to organize your content better, create custom views for campaigns, or offer users a more tailored experience.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;What This Means in HubSpot:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;By default, HubSpot gives you one main blog listing page (usually /blog). If you want to build something like /blog/all with its own content, layout, and pagination, here are the tools and steps you'll use:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Tools You’ll Use:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;1.Custom Templates – So you can control how things look and behave on /blog/all.&lt;/SPAN&gt;&lt;/P&gt;
&lt;OL start="2"&gt;
&lt;LI&gt;&lt;SPAN&gt; Website Pages – Create a new page just like any landing or site page.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt; HubL (HubSpot's coding language) – To pull in blog posts and control pagination.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt; (Optional) Redirects – To manage clean URLs if needed.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;Steps to Set Up a Custom Blog Sub-Page (/blog/all):&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 1: Build a Custom Blog Listing Template&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;Go to Content &amp;gt; Design Manager.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Create a new HTML + HubL file. Select Blog Listing as the template type.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Name it something like custom-blog-all-listing.html.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;In this template, use HubL to load blog posts. Here's a simple example:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% set blog_posts = blog_recent_posts("default", 9999) %}

{% for post in blog_posts %}
  &amp;lt;div class="blog-post"&amp;gt;
    &amp;lt;h3&amp;gt;&amp;lt;a href="{{ post.absolute_url }}"&amp;gt;{{ post.name }}&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;
    &amp;lt;p&amp;gt;{{ post.post_list_summary_field }}&amp;lt;/p&amp;gt;
  &amp;lt;/div&amp;gt;
{% endfor %}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can customize this section to show images, dates, authors, etc.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 2: Add Pagination&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;HubSpot doesn't add pagination automatically on custom pages—you need to code it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Here's a simple pagination example:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% if contents.has_next_page or contents.has_previous_page %}
  &amp;lt;div class="pagination"&amp;gt;
    {% if contents.has_previous_page %}
      &amp;lt;a href="{{ blog_page_link(contents.current_page_num - 1) }}"&amp;gt;Previous&amp;lt;/a&amp;gt;
    {% endif %}

    {% for page_num in 1..contents.total_pages %}
      &amp;lt;a href="{{ blog_page_link(page_num) }}"
         {% if page_num == contents.current_page_num %}class="active"{% endif %}&amp;gt;
         {{ page_num }}
      &amp;lt;/a&amp;gt;
    {% endfor %}

    {% if contents.has_next_page %}
      &amp;lt;a href="{{ blog_page_link(contents.current_page_num + 1) }}"&amp;gt;Next&amp;lt;/a&amp;gt;
    {% endif %}
  &amp;lt;/div&amp;gt;
{% endif %}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 3: Create a New Page for /blog/all&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Go to Website Pages in your HubSpot account.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Create a new page and choose the custom template you just made.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Set the page URL to /blog/all.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Add any modules or text you want—this is your chance to make this page unique.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If needed, use HubL to filter content, like only showing posts with a certain tag:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% set featured_posts = blog_recent_tag_posts("default", "featured", 9999) %}
{% for post in featured_posts %}
  {# Show your custom post display here #}
{% endfor %}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 4: Link to /blog/all from Your Menu or CTA&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Make sure users can reach /blog/all by adding it to your navigation or buttons.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Things to Keep in Mind:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SEO: If this page shows the same posts as /blog, make sure to use canonical tags so Google doesn’t see it as duplicate content.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Maintenance: If you create multiple blog listings, use global modules to keep styling consistent.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Use HubDB (optional): If you want even more control (like mixing blog posts with other types of content), HubDB gives you powerful options.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope this will help you out. Please mark it as &lt;/SPAN&gt;&lt;STRONG&gt;Solution Accepted and upvote&lt;/STRONG&gt;&lt;SPAN&gt; to help another Community member.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2025 14:46:41 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Custom-sub-page-for-blog-listing-e-g-blog-all-with-different/m-p/1166274#M43320</guid>
      <dc:creator>GRajput</dc:creator>
      <dc:date>2025-06-18T14:46:41Z</dc:date>
    </item>
  </channel>
</rss>

