<?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: Paginating HubDB in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331766#M16128</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9301"&gt;@Woodsy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Just following up with my solution &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 15 Apr 2020 20:18:16 GMT</pubDate>
    <dc:creator>psdtohubspot</dc:creator>
    <dc:date>2020-04-15T20:18:16Z</dc:date>
    <item>
      <title>Paginating HubDB</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331375#M16078</link>
      <description>&lt;P&gt;Hi, I'm looking to try and paginate my resource page. I'm trying to show 12 thumbnails per page with a next, back and number of pages underneath. Here is a link to the page and the code behind the module which also includes a dropdown filter that I would like to keep working. If the resources are filtered and more than 12 come back from the query these would be paginated.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www-channelmarketplace-com.sandbox.hs-sites.com/resources" target="_blank" rel="noopener"&gt;https://www-channelmarketplace-com.sandbox.hs-sites.com/resources&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;div id=resources&amp;gt;

&amp;lt;!-- FILTER --&amp;gt;

  &amp;lt;div class="resource-filter"&amp;gt;
    &amp;lt;form id="form_id" method="get"&amp;gt;

      &amp;lt;div&amp;gt;
        &amp;lt;h4&amp;gt;Filter by content type: &amp;lt;/h4&amp;gt;
        &amp;lt;select name="type" form="form_id" onChange="this.form.submit()"&amp;gt;
          &amp;lt;option value="show-all"&amp;gt;Show All&amp;lt;/option&amp;gt;
          {% set types = hubdb_table_column(2101318, "content_type").options %}
          {% for choice in types %}
          {% set type_list = type_list~choice.id|list%}
          {% if choice.id == request.query_dict.type%}
          &amp;lt;option selected="selected" value="{{ choice.id }}" onclick="resourceFilter()"&amp;gt;{{ choice.name }}&amp;lt;/option&amp;gt;
          {% else %}
          &amp;lt;option value="{{ choice.id }}"&amp;gt;{{ choice.name }}&amp;lt;/option&amp;gt;
          {% endif %}
          {% endfor %}
        &amp;lt;/select&amp;gt;
      &amp;lt;/div&amp;gt;

      
    &amp;lt;/form&amp;gt;
  &amp;lt;/div&amp;gt;
  

  &amp;lt;!-- sets the different query parameters using submitted input for hubdb query --&amp;gt;
  
  
{% set queryparam = "&amp;amp;orderBy=resource_order"~"&amp;amp;resource_order__gt=0" %}
{% if request.query_dict.type in ["1", "11", "12", "13","15"] %}
    {% set queryparam = queryparam ~ "&amp;amp;content_type="~request.query_dict.type|urlencode %}
{% endif %}
{% if request.query_dict.type == "show-all" %}
    {% set queryparam = queryparam %}
{% endif %}
 
 
	&amp;lt;!-- RESOURCE PANELS --&amp;gt;

  {% set table = hubdb_table_rows(2101318, queryparam) %} 

  {% if table == [] %}
  &amp;lt;p class='align-center'&amp;gt;Sorry, no listings found for that Search. Try changing your fiter and search again.&amp;lt;/p&amp;gt;
  {% else %}
  {% for row in table %}

  &amp;lt;a href="{{ row["resource_url"] }}" target="_blank"&amp;gt; 
    &amp;lt;div class="resource-container" &amp;gt;
      &amp;lt;div id="resource-listing" &amp;gt;
        &amp;lt;div class="{{ row["type"].name }}"&amp;gt;
          &amp;lt;div class=resource-thumbnail&amp;gt;
            &amp;lt;div class=resource-icon&amp;gt;&amp;lt;img src="{{ row["resource_icon"].url}}"&amp;gt;&amp;lt;/div&amp;gt;
            &amp;lt;img src="{{ row["thumbnail"].url}}"&amp;gt;
          &amp;lt;/div&amp;gt;
          &amp;lt;div class="resource-details"&amp;gt;
            &amp;lt;p class="content-type"&amp;gt;{{ row["content_type"].name }}&amp;lt;/p&amp;gt;
            &amp;lt;h2&amp;gt;{{ row["resource_title"] }}&amp;lt;/h2&amp;gt;
            &amp;lt;div class="overview"&amp;gt;
              &amp;lt;p&amp;gt;{{ row["overview"] }}&amp;lt;/p&amp;gt;
            &amp;lt;/div&amp;gt;
            &amp;lt;!--&amp;lt;div class="button"&amp;gt;&amp;lt;a href="{{ row["resource_url"] }}"&amp;gt;Learn more&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;--&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;            
      &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
  &amp;lt;/a&amp;gt;
  {% endfor %}
  {% endif %}

&amp;lt;/div&amp;gt;  &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for any help.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2020 15:43:23 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331375#M16078</guid>
      <dc:creator>Woodsy</dc:creator>
      <dc:date>2020-04-14T15:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Paginating HubDB</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331412#M16085</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9301"&gt;@Woodsy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please review I added few lines of Code using List.js you can easily copy and paste below code it will work&amp;nbsp;&lt;BR /&gt;And Please Add Pagination style it's just list&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;selector &lt;STRONG&gt;.pagination ul li&amp;gt;a&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;script src="//cdnjs.cloudflare.com/ajax/libs/list.js/1.5.0/list.min.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
$( document ).ready(function() {
var rsList = new List('resource-listings', {
valueNames: ['resource-container'],
page: 12,
pagination: true
});
});

&amp;lt;/script&amp;gt;

&amp;lt;div id="resources"&amp;gt;

&amp;lt;!-- FILTER --&amp;gt;
&amp;lt;div class="resource-filter"&amp;gt;
&amp;lt;form id="form_id" method="get"&amp;gt;
&amp;lt;div&amp;gt;
&amp;lt;h4&amp;gt;Filter by content type:&amp;lt;/h4&amp;gt;
&amp;lt;select form="form_id" name="type" onchange="this.form.submit()"&amp;gt;
&amp;lt;option value="show-all"&amp;gt;Show All&amp;lt;/option&amp;gt;
{% set types = hubdb_table_column(2101318, "content_type").options %} {% for choice in types %} {% set type_list = type_list~choice.id|list%} {% if choice.id == request.query_dict.type%}
&amp;lt;option selected="selected" value="{{ choice.id }}"&amp;gt;{{ choice.name }}&amp;lt;/option&amp;gt;
{% else %}
&amp;lt;option value="{{ choice.id }}"&amp;gt;{{ choice.name }}&amp;lt;/option&amp;gt;
{% endif %} {% endfor %}&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;/form&amp;gt;
&amp;lt;/div&amp;gt;


&amp;lt;!-- sets the different query parameters using submitted input for hubdb query --&amp;gt; 

{% set queryparam = "&amp;amp;orderBy=resource_order"~"&amp;amp;resource_order__gt=0" %}
{% if request.query_dict.type in ["1", "11", "12", "13","15"] %}
    {% set queryparam = queryparam ~ "&amp;amp;content_type="~request.query_dict.type|urlencode %}
{% endif %}
{% if request.query_dict.type == "show-all" %}
    {% set queryparam = queryparam %}
{% endif %}

&amp;lt;!-- RESOURCE PANELS --&amp;gt; 

{% set table = hubdb_table_rows(2101318, queryparam) %} {% if table == [] %}
&amp;lt;p class="align-center"&amp;gt;
Sorry, no listings found for that Search. Try changing your fiter and search again.&amp;lt;/p&amp;gt;
{% else %}

&amp;lt;div id="resource-listings" class="result-lists"&amp;gt;
&amp;lt;ul class="list resource-list"&amp;gt;

{% for row in table %}

&amp;lt;li&amp;gt;
&amp;lt;a href="{{ row["resource_url"] }}" target="_blank"&amp;gt; 
    &amp;lt;div class="resource-container" &amp;gt;
      &amp;lt;div id="resource-listing" &amp;gt;
        &amp;lt;div class="{{ row["type"].name }}"&amp;gt;
          &amp;lt;div class=resource-thumbnail&amp;gt;
            &amp;lt;div class=resource-icon&amp;gt;&amp;lt;img src="{{ row["resource_icon"].url}}"&amp;gt;&amp;lt;/div&amp;gt;
            &amp;lt;img src="{{ row["thumbnail"].url}}"&amp;gt;
          &amp;lt;/div&amp;gt;
          &amp;lt;div class="resource-details"&amp;gt;
            &amp;lt;p class="content-type"&amp;gt;{{ row["content_type"].name }}&amp;lt;/p&amp;gt;
            &amp;lt;h2&amp;gt;{{ row["resource_title"] }}&amp;lt;/h2&amp;gt;
            &amp;lt;div class="overview"&amp;gt;
              &amp;lt;p&amp;gt;{{ row["overview"] }}&amp;lt;/p&amp;gt;
            &amp;lt;/div&amp;gt;
            &amp;lt;!--&amp;lt;div class="button"&amp;gt;&amp;lt;a href="{{ row["resource_url"] }}"&amp;gt;Learn more&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;--&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;            
      &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
  &amp;lt;/a&amp;gt;

&amp;lt;/li&amp;gt;
{% endfor %}&amp;lt;/ul&amp;gt;&lt;BR /&gt;&amp;lt;!-- Show Pagination --&amp;gt;&lt;BR /&gt;&amp;lt;ul class="pagination"&amp;gt;&amp;lt;/ul&amp;gt;
&amp;lt;/div&amp;gt;
{% endif %}&amp;lt;/div&amp;gt;&lt;/PRE&gt;&lt;P&gt;Let me know if any questions!&lt;BR /&gt;&lt;BR /&gt;Happy to Help!&amp;nbsp;&lt;BR /&gt;Thanks!&amp;nbsp;&lt;BR /&gt;Ajit&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 09:21:07 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331412#M16085</guid>
      <dc:creator>psdtohubspot</dc:creator>
      <dc:date>2020-04-16T09:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Paginating HubDB</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331766#M16128</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9301"&gt;@Woodsy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Just following up with my solution &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 20:18:16 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331766#M16128</guid>
      <dc:creator>psdtohubspot</dc:creator>
      <dc:date>2020-04-15T20:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Paginating HubDB</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331780#M16133</link>
      <description>&lt;P&gt;Hi, thanks for taking a look at my code and posting a suggestion. I've added the code but am having trouble making it work. I have attached a screenshot of how it looks. Have I missing something? The page is also showing all the cards rather than just 12 and the pagination controls are not showing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would you be able to let me know what I am doing wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for taking the time to help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="screen.jpg" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/25756i3041F039DDA72905/image-size/large?v=v2&amp;amp;px=999" role="button" title="screen.jpg" alt="screen.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 21:07:39 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331780#M16133</guid>
      <dc:creator>Woodsy</dc:creator>
      <dc:date>2020-04-15T21:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: Paginating HubDB</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331794#M16142</link>
      <description>&lt;P&gt;No problem, Please clone this page and send me the Cloned URL I will send the code&amp;nbsp;&lt;BR /&gt;That will work.&lt;BR /&gt;&lt;BR /&gt;If you want me to do this in your portal feel free to assign Design manager access on support@psdtohubspot.com&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 21:42:23 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331794#M16142</guid>
      <dc:creator>psdtohubspot</dc:creator>
      <dc:date>2020-04-15T21:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Paginating HubDB</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331885#M16146</link>
      <description>&lt;P&gt;Thanks, here's the url to the cloned page:&lt;BR /&gt;&amp;nbsp;&lt;A href="https://www-channelmarketplace-com.sandbox.hs-sites.com/resources-test" target="_blank"&gt;https://www-channelmarketplace-com.sandbox.hs-sites.com/resources-test&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 09:00:17 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331885#M16146</guid>
      <dc:creator>Woodsy</dc:creator>
      <dc:date>2020-04-16T09:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Paginating HubDB</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331889#M16147</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9301"&gt;@Woodsy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Please check my above code I added one line for&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;ul class="pagination"&amp;gt;&amp;lt;/ul&amp;gt;&lt;/PRE&gt;&lt;P&gt;Update Jquery and remove from my code only add a list.js&lt;BR /&gt;&lt;A href="https://knowledge.hubspot.com/cos-general/how-do-i-select-which-version-of-jquery-is-included-across-my-pages" target="_blank"&gt;https://knowledge.hubspot.com/cos-general/how-do-i-select-which-version-of-jquery-is-included-across-my-pages&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I made codepen as a working example for you&lt;BR /&gt;&lt;BR /&gt;Look here :&amp;nbsp;&lt;A href="https://codepen.io/ajitiosys/pen/MWaaBVq" target="_blank"&gt;https://codepen.io/ajitiosys/pen/MWaaBVq&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this works for you,&amp;nbsp;&lt;BR /&gt;If not let me know, please.&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;Ajit&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 09:25:29 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/331889#M16147</guid>
      <dc:creator>psdtohubspot</dc:creator>
      <dc:date>2020-04-16T09:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Paginating HubDB</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/332271#M16169</link>
      <description>&lt;P&gt;Hi, the pagination works&amp;nbsp;&lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://community.hubspot.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;BR /&gt;&lt;BR /&gt;I have a couple of questions around funtionality and styling. In the screenshot there is I have selected page 4 which adds two lots of three horizontal dots.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="screen.jpg" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/25821i215EA6E1EA23CB86/image-size/large?v=v2&amp;amp;px=999" role="button" title="screen.jpg" alt="screen.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can thes be used to arrow next and back through the pages? Currently they don't do anything. Also can I add arrow styling similar to the blog page control here:&amp;nbsp;&lt;A href="https://www.webinfinity.com/blog" target="_blank"&gt;https://www.webinfinity.com/blog&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Does the list.js have an option to add a goto last/first page option similar to the blog link above?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for all your support and advice in making this work.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 11:13:25 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/332271#M16169</guid>
      <dc:creator>Woodsy</dc:creator>
      <dc:date>2020-04-17T11:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Paginating HubDB</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/332429#M16190</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9301"&gt;@Woodsy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Finally, I got a solution for your question check code below&amp;nbsp;&lt;BR /&gt;Please look here I added a code for you&amp;nbsp;&lt;A href="https://codepen.io/ajitiosys/pen/MWaaBVq" target="_blank" rel="noopener"&gt;https://codepen.io/ajitiosys/pen/MWaaBVq&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pagination help.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/25832i5C3B2B32C8F778D7/image-size/large?v=v2&amp;amp;px=999" role="button" title="pagination help.png" alt="pagination help.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here is the modified JavaScript for you Just Copy and Paste&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;var perPage = 6;

new List("resource-listings", {
  valueNames: ["resource-container"],
  page: perPage,
  plugins: [
    // can not make left and right work on List.js 1.5.0, so I use 1.3.0 instead, which requires List.pagination.js plugin
    ListPagination({
      paginationClass: "pagination-layout",
      left: 2,
      right: 2
    })
  ]
}).on("updated", function(list) {
  var isFirst = list.i == 1;
  var isLast = list.i &amp;gt; list.matchingItems.length - list.page;

  // make the Prev and Nex buttons disabled on first and last pages accordingly
  $(".pagination-prev.disabled, .pagination-next.disabled").removeClass(
    "disabled"
  );
  if (isFirst) {
    $(".pagination-prev").addClass("disabled");
  }
  if (isLast) {
    $(".pagination-next").addClass("disabled");
  }

  // hide pagination if there one or less pages to show
  if (list.matchingItems.length &amp;lt;= perPage) {
    $(".pagination-wrap").hide();
  } else {
    $(".pagination-wrap").show();
  }
});

$(".pagination-next").click(function() {
  $(".pagination-layout .active")
    .next()
    .trigger("click");
});
$(".pagination-prev").click(function() {
  $(".pagination-layout .active")
    .prev()
    .trigger("click");
});&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;Don't forget to add Library for updates&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;https://cdnjs.cloudflare.com/ajax/libs/list.js/1.3.0/list.min.js

https://cdnjs.cloudflare.com/ajax/libs/list.pagination.js/0.1.1/list.pagination.min.js&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_2.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/25833i26F257E9B1E39EDB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_2.png" alt="Screenshot_2.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Let me know if any questions&lt;BR /&gt;&lt;BR /&gt;Happy to help! Have a nice weekend &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks!&amp;nbsp;&lt;BR /&gt;Ajit Kumar&lt;BR /&gt;Any question email me on support@psdtohubspot.com&lt;BR /&gt;or Visit: &lt;A href="http://www.psdtohubspot.com" target="_blank" rel="noopener"&gt;www.psdtohubspot.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 21:41:17 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Paginating-HubDB/m-p/332429#M16190</guid>
      <dc:creator>psdtohubspot</dc:creator>
      <dc:date>2020-04-17T21:41:17Z</dc:date>
    </item>
  </channel>
</rss>

