django-rest-framework/docs/templates/layout.html
tom christie tom@tomchristie.com 478dc2d0ce Fix up doc title & desc, fix repo link
2011-02-01 19:55:57 +00:00

14 lines
388 B
HTML

{% extends "!layout.html" %}
{%- if not embedded and docstitle %}
{%- set titleprefix = docstitle|e + " - "|safe %}
{%- else %}
{%- set titleprefix = "" %}
{%- endif %}
{% block htmltitle %}<title>{% if pagename == 'index' %}Django REST Framework{% else %}{{ titleprefix }}{{ title|striptags|e }}{% endif %}</title>{% endblock %}
{% block extrahead %}
{{ super() }}
{% endblock %}