{% render_model post "title" %}
{% block blog_meta %}
{% if post.author %}
-
{% trans "by" %} {{ post.author.get_full_name }}
{% endif %}
-
{{ post.date_published|date:"M d, Y" }}
{% if post.categories.exists %}
{% for category in post.categories.all %}
- {{ category.name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% if post.tags.exists %}
{% for tag in post.tags.all %}
- {{ tag.name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% endblock %}
{% if post.main_image_id %}
{% thumbnail post.main_image post.thumbnail_options.size crop=post.thumbnail_options.crop upscale=post.thumbnail_options.upscale subject_location=post.main_image.subject_location as thumb %}
{% endif %}
{% if use_placeholder %}
{% render_placeholder post.content %}
{% else %}
{% render_model post "post_text" "post_text" %}
{% endif %}
{% endspaceless %}{% endblock content_blog %}