{% extends "base.html" %} {% load mezzanine_tags comment_tags keyword_tags rating_tags i18n disqus_tags %} {% block meta_title %}{{ portfolio_post.meta_title }}{% endblock %} {% block meta_keywords %}{% metablock %} {% keywords_for portfolio_post as tags %} {% for tag in tags %}{% if not forloop.first %}, {% endif %}{{ tag }}{% endfor %} {% endmetablock %}{% endblock %} {% block meta_description %}{% metablock %} {{ portfolio_post.description }} {% endmetablock %}{% endblock %} {% block main %}
{% editable portfolio_post.title %}

{{ portfolio_post.title }}

{% endeditable %}
{% block portfolio_post_detail_sharebuttons %}
{% endblock %}
{% block portfolio_post_detail_content %}
{% editable portfolio_post.content %} {{ portfolio_post.content|richtext_filters|safe }} {% endeditable %}
{% endblock %} {% block portfolio_post_detail_gallery %}
{% endblock %}
{% block portfolio_post_detail_categories %} {% with portfolio_post.categories.all as categories %} {% if categories %}
{% trans "Categories" %} {% for category in categories %} {{ category }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %} {% endwith %} {% endblock %} {% block portfolio_post_detail_keywords %} {% keywords_for portfolio_post as tags %} {% if tags %}
{% spaceless %}
  • {% trans "Tags" %}:
  • {% for tag in tags %}
  • {{ tag }}{% if not forloop.last %}, {% endif %}
  • {% endfor %}
{% endspaceless %}
{% endif %} {% endblock %} {% block portfolio_post_previous_next %}
    {% with portfolio_post.get_previous_by_publish_date as previous %} {% if previous %} {% endif %} {% endwith %} {% with portfolio_post.get_next_by_publish_date as next %} {% if next %} {% endif %} {% endwith %}
{% endblock %} {% block portfolio_post_detail_related_posts %} {% if related_posts %}

{% trans 'Related posts' %}

{% endif %} {% endblock %} {% block portfolio_post_detail_comments %} {% if portfolio_post.allow_comments %} {% comments_for portfolio_post %} {% endif %} {% endblock %}
{% endblock %}