'Squarespace display not featured posts

I d like to display my not featured post in my css grid . I have try the parameter featured = false in my squarespace query but it didn't work.

I found this post with similar problem : http://answers.squarespace.com/questions/18544/i-have-a-query-and-my-list-on-the-same-page-i-need-the-items-to-not-be-in-both-places

and I have tried different solutions ....

          <squarespace:query collection="blog" limit="4" featured="false">    
            {.repeated section items}
               {.if starred}
                  <!-- skip featured items -->
               {.or}
               <div class="col-1-3">
                  <div class="module-container">
                     {.main-image?}  
                         <a href="{fullUrl}">
                            <img {@|image-meta} />
                          </a>
                     {.end}
                     <div class="caption-container">
                            <small>{categories}</small>
                            <a href="{fullUrl}><h2 class="caption">{title}</h2</a>
                        </div>
                    </div>
                </div>  
           {.end}
    {.end}
</squarespace:query>

But...even if I put the {.if starred} statement ..need to be after that my query has been limited to tot number of post so it doesn't display the limit amount, but less cos is counting the featured posts I don't want to display.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source