{% for post in site.posts %}
{% if post.featured == true %}
{% include featuredbox.html %}
{% endif %}
{% endfor %}
{% if paginator.previous_page %}
{% if paginator.previous_page > 0 %}
{% endif %}
{% endif %}
Trending Now
{% for post in paginator.posts %}
{% unless post.featured == true %}
{% include postbox.html %}
{% endunless %}
{% endfor %}
{% include sidebar.html %}