diff options
-rw-r--r-- | Doc/tools/templates/indexcontent.html | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Doc/tools/templates/indexcontent.html b/Doc/tools/templates/indexcontent.html index 1076c1f..2bf2cce 100644 --- a/Doc/tools/templates/indexcontent.html +++ b/Doc/tools/templates/indexcontent.html @@ -1,5 +1,12 @@ -{% extends "defindex.html" %} -{% block tables %} +{% extends "layout.html" %} +{%- block htmltitle -%} +<title>{{ shorttitle }}</title> +{%- endblock -%} +{% block body %} + <h1>{{ docstitle|e }}</h1> + <p> + {% trans %}Welcome! This is the documentation for Python {{ release }}{% endtrans %} + </p> <p><strong>{% trans %}Parts of the documentation:{% endtrans %}</strong></p> <table class="contentstable" align="center"><tr> <td width="50%"> |