<?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 Need blog banner to display on first listing page only in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Need-blog-banner-to-display-on-first-listing-page-only/m-p/47082#M3835</link>
    <description>&lt;P&gt;Hi I'm redesigning our blog&amp;nbsp;&lt;A href="https://www.g2planet.com/blog" target="_blank"&gt;https://www.g2planet.com/blog&lt;/A&gt;. I want the banner with a featured article to display only on the first listing page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To build the banner I used a hubl template with the code below. I think the third if-statement (red text) is the problem. I'm new to HubL so I'm probably just doing something wrong with the syntax. Any help would be aprpreciated. Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{% if is_listing_view %}

{% if not simple_list_page %}

&lt;FONT color="#FF0000"&gt;{% if (current_page_num, 1) %}&lt;/FONT&gt;


&amp;lt;div class="blog-hero"&amp;gt;
    &amp;lt;div class="centered large-stack"&amp;gt;
        
        &amp;lt;p class="featured-post"&amp;gt;FEATURED POST&amp;lt;/p&amp;gt;
        &amp;lt;a href="https://www.g2planet.com/blog/harnessing-data-to-drive-automotive-events"&amp;gt;&amp;lt;h1 class="featured-post-title"&amp;gt;Harnessing Data to Drive Better Automotive Events&amp;lt;/h1&amp;gt;&amp;lt;/a&amp;gt;
        &amp;lt;img class="featured-post-image" src="https://www.g2planet.com/hubfs/Feature%20post%20test.png" alt="Read This Post"/&amp;gt;
        
    &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;


{% endif %}

{% endif %}

{% endif %}&lt;/PRE&gt;</description>
    <pubDate>Wed, 22 Nov 2017 13:50:03 GMT</pubDate>
    <dc:creator>martin3walker</dc:creator>
    <dc:date>2017-11-22T13:50:03Z</dc:date>
    <item>
      <title>Need blog banner to display on first listing page only</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Need-blog-banner-to-display-on-first-listing-page-only/m-p/47082#M3835</link>
      <description>&lt;P&gt;Hi I'm redesigning our blog&amp;nbsp;&lt;A href="https://www.g2planet.com/blog" target="_blank"&gt;https://www.g2planet.com/blog&lt;/A&gt;. I want the banner with a featured article to display only on the first listing page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To build the banner I used a hubl template with the code below. I think the third if-statement (red text) is the problem. I'm new to HubL so I'm probably just doing something wrong with the syntax. Any help would be aprpreciated. Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{% if is_listing_view %}

{% if not simple_list_page %}

&lt;FONT color="#FF0000"&gt;{% if (current_page_num, 1) %}&lt;/FONT&gt;


&amp;lt;div class="blog-hero"&amp;gt;
    &amp;lt;div class="centered large-stack"&amp;gt;
        
        &amp;lt;p class="featured-post"&amp;gt;FEATURED POST&amp;lt;/p&amp;gt;
        &amp;lt;a href="https://www.g2planet.com/blog/harnessing-data-to-drive-automotive-events"&amp;gt;&amp;lt;h1 class="featured-post-title"&amp;gt;Harnessing Data to Drive Better Automotive Events&amp;lt;/h1&amp;gt;&amp;lt;/a&amp;gt;
        &amp;lt;img class="featured-post-image" src="https://www.g2planet.com/hubfs/Feature%20post%20test.png" alt="Read This Post"/&amp;gt;
        
    &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;


{% endif %}

{% endif %}

{% endif %}&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Nov 2017 13:50:03 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Need-blog-banner-to-display-on-first-listing-page-only/m-p/47082#M3835</guid>
      <dc:creator>martin3walker</dc:creator>
      <dc:date>2017-11-22T13:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Need blog banner to display on first listing page only</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Need-blog-banner-to-display-on-first-listing-page-only/m-p/47692#M3837</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/12954"&gt;@martin3walker&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;oh! it looks like you missed something in code.&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://community.hubspot.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;don't&amp;nbsp;worry we are here to help!&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;/P&gt;&lt;P&gt;do your banner code in this condition&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{% if current_page_num == 1 %}    
       TRooInbound Rocks on First page
{% else %}
       TRooInbound Rocks on Other Pages 
{% endif %}&lt;/PRE&gt;&lt;P&gt;Give us your valuable feedback about this!&lt;/P&gt;&lt;P&gt;we are waiting.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="UserSignature lia-message-signature"&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;IMG src="https://cdn2.hubspot.net/hubfs/98485/2000px-Ok_sign_font_awesome.png" border="0" width="30" height="30" /&gt;&lt;/TD&gt;&lt;TD&gt;Did my post help answer your query? Help the Community by &lt;STRONG&gt;marking it as a solution&lt;/STRONG&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;STRONG&gt;TRooInbound Team&lt;/STRONG&gt;&lt;P&gt;For more help and solutions, please visit at &lt;A href="https://trooinbound.com/" target="_blank"&gt;www.trooinbound.com&lt;/A&gt; or email at &lt;A href="mailto:hello@trooinbound.com" target="_blank"&gt;hello@trooinbound.com&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 22 Nov 2017 15:34:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Need-blog-banner-to-display-on-first-listing-page-only/m-p/47692#M3837</guid>
      <dc:creator>TRooInbound</dc:creator>
      <dc:date>2017-11-22T15:34:42Z</dc:date>
    </item>
  </channel>
</rss>

