{% extends "base.html" %} {% block add-snipt %}
  • {% endblock %} {% block page-title %}/ {% if snipt.title %}{{ snipt.title }}{% else %}Untitled{% endif %} / {{ user.username }} - {{ block.super }}{% endblock %} {% block html-class %}detail{% endblock %} {% block body-class %}{% if request.path == '/api/' or request.path == '/blogging/' %}snipt-page{% else %}detail{% endif %}{% endblock %} {% block js %} {{ block.super }} window.detail = true; {% endblock %} {% block breadcrumb %}
  • {{ user.username }}
  • / {{ snipt.title }}
  • {% endblock %} {% block aside-inner %} {% if request.path == '/api/' %} {% if request.user.is_authenticated %} {% endif %} {% endif %} {% endblock %} {% block content %}
    {% if not request.user.is_authenticated %} {% include 'ad-leaderboard-pro.html' %} {% elif not request.user.profile.teams_beta_seen %} {% include 'ad-leaderboard-pro.html' %} {% endif %} {% with 'true' as detail %} {% include "snipts/snipt-list.html" %} {% endwith %}
    {% if snipt.public %} {% else %}

    Disqus comments have been disabled on private snipts.

    See https://github.com/nicksergeant/snipt/issues/53 if you would like more information on this decision.

    {% endif %}
    {% endblock %}