{% extends 'site/base.html' %} {% load static %} {% block title %} {% endblock title %} {% block css %} {% endblock css %} {% block content %}

blog grid

{% if blogs %} {% for blog in blogs %}
{{ blog.title }}
  • {{ blog.author }}
  • {{ blog.publish_date|date:"F d, Y" }}
{{ blog.title|truncatechars_html:70 }}

{{ blog.content|safe|truncatechars_html:150 }}

read more
{% endfor %} {% else %}

No blogs available at the moment.

{% endif %}

Showing 12 of 60 Results

Find blogs

popular feeds

top categories

popular tags

    {% if popular_tags %} {% else %}

    Popular tags are not available.

    {% endif %}

follow us

    {% if social_media %} {% for profile in social_media %} {% if profile.name == 'Facebook' %}
  • {% elif profile.name == 'Twitter' %}
  • {% elif profile.name == 'LinkedIn' %}
  • {% elif profile.name == 'Pinterest' %}
  • {% elif profile.name == 'Instagram' %}
  • {% endif %} {% endfor %} {% else %}
  • No social media profiles available.
  • {% endif %}
{% include 'site/includes/newsletter.html' %} {% endblock content %} {% block js %} {% endblock js %}