{% load static %} {% include 'blog/general/header.html' %}
{% if posts %}
{% for post in posts %} {% if post.pk == first %}

{{ post }}

LATEST STORY {{ post.date_created|timesince }} ago.
{% endif %} {% endfor %} {% if le_lent > 1 %}

LATEST POSTS

{% for post in posts %} {% if post.pk != first %}
{{ post.category }} {{ post.date_created|timesince }} ago.
{{ post.title|truncatewords:13 }}
{% endif %} {% endfor %}
{% endif %}
{% endif %} {% if trending %}
{% for post in trending %} {% if post.pk == ftrend %}

{{ post }}

TRENDING {{ post.date_created|timesince }} ago.
{% endif %} {% endfor %} {% if tr_lent > 1 %}

TRENDING POSTS

{% for post in trending %} {% if post.pk != ftrend %}
{{ post.category }} {{ post.date_created|timesince }} ago.
{{ post.title|truncatewords:13 }}
{% endif %} {% endfor %}
{% endif %}
{% endif %} {% if entertainment %}
{% for post in entertainment %} {% if post.pk == fentertainment %}

{{ post }}

ENTERTAINMENT {{ post.date_created|timesince }} ago.
{% endif %} {% endfor %} {% if en_lent > 1 %}

ENTERTAINMENT

{% for post in entertainment %} {% if post.pk != fentertainment %}
{{ post.category }} {{ post.date_created|timesince }} ago.
{{ post.title|truncatewords:13 }}
{% endif %} {% endfor %}
{% endif %}
{% endif %} {% if news %}
{% for post in news %} {% if post.pk == fnews %}

{{ post }}

NEWS {{ post.date_created|timesince }} ago.
{% endif %} {% endfor %} {% if new_lent > 1 %}

NEWS

{% for post in news %} {% if post.pk != fnews %}
{{ post.category }} {{ post.date_created|timesince }} ago.
{{ post.title|truncatewords:13 }}
{% endif %} {% endfor %}
{% endif %}
{% endif %} {% if sport %}
{% for post in sport %} {% if post.pk == fsport %}

{{ post }}

SPORT {{ post.date_created|timesince }} ago.
{% endif %} {% endfor %} {% if sp_lent > 1 %}

SPORT

{% for post in sport %} {% if post.pk != fsport %}
{{ post.category }} {{ post.date_created|timesince }} ago.
{{ post.title|truncatewords:13 }}
{% endif %} {% endfor %}
{% endif %}
{% endif %}
{% for post in may_like %}
{{ post.category }} / {{ post.date_created|timesince }} ago.

{{ post|truncatewords:13 }}

{% endfor %}
{% include 'blog/general/footer.html' %}