aboutsummaryrefslogtreecommitdiffstats
path: root/docs/templates/layout.html
blob: 681266cc2f04442ebb47f5d40888944885669702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% 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 %}