{% extends 'products/base.html' %} {% load url %} {% load profiles %} {% load bleach %} {% load guardian_tags %} {% load static %} {% block title %}{{ object.title }} - Blogs - {{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block meta_social %} {% endblock %} {% block content %}

{{ object.title }}

Published {{ object.created|date:"j N Y" }}
By {# @formatter:off #} {% for author in object.authors.all %}{% if not forloop.first %}{% if forloop.last %} and {% else %}, {% endif %}{% endif %}{% firstof author.get_full_name author.username %}{% endfor %} {# @formatter:on #}

{% if is_news %}
{% else %} {{ object.content|md2html }} {% endif %}
{% if object.tags.count != 0 %}

Tags

{% for tag in object.tags.all %} {% endfor %} {% endif %} {% if object.companies.count != 0 %}

Featured companies

{% for company in object.companies.all %} {% endfor %} {% endif %}

Newsletter

Hear about new blogs and other developments in the field? Subscribe to our newsletter.

{% get_obj_perms request.user for object as "object_perms" %} {% if "change_post" in object_perms %} {% if not object.published %} {% endif %}

Edit post

{% endif %}
{% endblock %}