{% extends "organization/home-base.html" %} {% block org_js %} {% include "organization/blog/pending-js.html" %} {% endblock %} {% block middle_content %} {% for post in blogs %}
{% if post.is_organization_private and show_organization_private_icon %}
{% for org in post.organizations.all() %} {% include "organization/tag.html" %} {% endfor %}
{% endif %}
{% with authors=post.get_authors() %} {%- if authors -%} {%- endif -%} {% endwith %} • {{ relative_time(post.publish_on) }} {%- if post.sticky %} • {% endif -%}

{{ post.title }}

{% cache 86400 'post_content' post.id %} {{ post.content|markdown(lazy_load=True)|reference|str|safe }} {% endcache %}
{{_("...More")}}
{% if request.profile.can_edit_organization(org) %}
{% endif %}
{% endfor %} {% include "feed/has_next.html" %} {% endblock %}