INADA Naoki | cf44d95 | 2017-02-20 09:45:55 +0900 | [diff] [blame] | 1 | {% extends "layout.html" %} |
| 2 | {%- block htmltitle -%} |
| 3 | <title>{{ shorttitle }}</title> |
| 4 | {%- endblock -%} |
| 5 | {% block body %} |
| 6 | <h1>{{ docstitle|e }}</h1> |
| 7 | <p> |
| 8 | {% trans %}Welcome! This is the documentation for Python {{ release }}.{% endtrans %} |
| 9 | </p> |
Victor Stinner | b492984 | 2016-01-23 12:55:11 +0100 | [diff] [blame] | 10 | <p><strong>{% trans %}Parts of the documentation:{% endtrans %}</strong></p> |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 11 | <table class="contentstable" align="center"><tr> |
| 12 | <td width="50%"> |
Victor Stinner | b492984 | 2016-01-23 12:55:11 +0100 | [diff] [blame] | 13 | <p class="biglink"><a class="biglink" href="{{ pathto("whatsnew/" + version) }}">{% trans %}What's new in Python {{ version }}?{% endtrans %}</a><br/> |
| 14 | <span class="linkdescr">{% trans whatsnew_index=pathto("whatsnew/index") %}or <a href="{{ whatsnew_index }}">all "What's new" documents</a> since 2.0{% endtrans %}</span></p> |
| 15 | <p class="biglink"><a class="biglink" href="{{ pathto("tutorial/index") }}">{% trans %}Tutorial{% endtrans %}</a><br/> |
| 16 | <span class="linkdescr">{% trans %}start here{% endtrans %}</span></p> |
| 17 | <p class="biglink"><a class="biglink" href="{{ pathto("library/index") }}">{% trans %}Library Reference{% endtrans %}</a><br/> |
| 18 | <span class="linkdescr">{% trans %}keep this under your pillow{% endtrans %}</span></p> |
| 19 | <p class="biglink"><a class="biglink" href="{{ pathto("reference/index") }}">{% trans %}Language Reference{% endtrans %}</a><br/> |
| 20 | <span class="linkdescr">{% trans %}describes syntax and language elements{% endtrans %}</span></p> |
| 21 | <p class="biglink"><a class="biglink" href="{{ pathto("using/index") }}">{% trans %}Python Setup and Usage{% endtrans %}</a><br/> |
| 22 | <span class="linkdescr">{% trans %}how to use Python on different platforms{% endtrans %}</span></p> |
| 23 | <p class="biglink"><a class="biglink" href="{{ pathto("howto/index") }}">{% trans %}Python HOWTOs{% endtrans %}</a><br/> |
| 24 | <span class="linkdescr">{% trans %}in-depth documents on specific topics{% endtrans %}</span></p> |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 25 | </td><td width="50%"> |
Ned Deily | 835d392 | 2016-06-05 17:35:43 -0700 | [diff] [blame] | 26 | <p class="biglink"><a class="biglink" href="{{ pathto("installing/index") }}">{% trans %}Installing Python Modules{% endtrans %}</a><br/> |
| 27 | <span class="linkdescr">{% trans %}installing from the Python Package Index & other sources{% endtrans %}</span></p> |
| 28 | <p class="biglink"><a class="biglink" href="{{ pathto("distributing/index") }}">{% trans %}Distributing Python Modules{% endtrans %}</a><br/> |
| 29 | <span class="linkdescr">{% trans %}publishing modules for installation by others{% endtrans %}</span></p> |
Victor Stinner | b492984 | 2016-01-23 12:55:11 +0100 | [diff] [blame] | 30 | <p class="biglink"><a class="biglink" href="{{ pathto("extending/index") }}">{% trans %}Extending and Embedding{% endtrans %}</a><br/> |
| 31 | <span class="linkdescr">{% trans %}tutorial for C/C++ programmers{% endtrans %}</span></p> |
| 32 | <p class="biglink"><a class="biglink" href="{{ pathto("c-api/index") }}">{% trans %}Python/C API{% endtrans %}</a><br/> |
| 33 | <span class="linkdescr">{% trans %}reference for C/C++ programmers{% endtrans %}</span></p> |
Victor Stinner | b492984 | 2016-01-23 12:55:11 +0100 | [diff] [blame] | 34 | <p class="biglink"><a class="biglink" href="{{ pathto("faq/index") }}">{% trans %}FAQs{% endtrans %}</a><br/> |
| 35 | <span class="linkdescr">{% trans %}frequently asked questions (with answers!){% endtrans %}</span></p> |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 36 | </td></tr> |
| 37 | </table> |
| 38 | |
Victor Stinner | b492984 | 2016-01-23 12:55:11 +0100 | [diff] [blame] | 39 | <p><strong>{% trans %}Indices and tables:{% endtrans %}</strong></p> |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 40 | <table class="contentstable" align="center"><tr> |
| 41 | <td width="50%"> |
Victor Stinner | b492984 | 2016-01-23 12:55:11 +0100 | [diff] [blame] | 42 | <p class="biglink"><a class="biglink" href="{{ pathto("py-modindex") }}">{% trans %}Global Module Index{% endtrans %}</a><br/> |
| 43 | <span class="linkdescr">{% trans %}quick access to all modules{% endtrans %}</span></p> |
| 44 | <p class="biglink"><a class="biglink" href="{{ pathto("genindex") }}">{% trans %}General Index{% endtrans %}</a><br/> |
| 45 | <span class="linkdescr">{% trans %}all functions, classes, terms{% endtrans %}</span></p> |
| 46 | <p class="biglink"><a class="biglink" href="{{ pathto("glossary") }}">{% trans %}Glossary{% endtrans %}</a><br/> |
| 47 | <span class="linkdescr">{% trans %}the most important terms explained{% endtrans %}</span></p> |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 48 | </td><td width="50%"> |
Victor Stinner | b492984 | 2016-01-23 12:55:11 +0100 | [diff] [blame] | 49 | <p class="biglink"><a class="biglink" href="{{ pathto("search") }}">{% trans %}Search page{% endtrans %}</a><br/> |
| 50 | <span class="linkdescr">{% trans %}search this documentation{% endtrans %}</span></p> |
| 51 | <p class="biglink"><a class="biglink" href="{{ pathto("contents") }}">{% trans %}Complete Table of Contents{% endtrans %}</a><br/> |
| 52 | <span class="linkdescr">{% trans %}lists all sections and subsections{% endtrans %}</span></p> |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 53 | </td></tr> |
| 54 | </table> |
| 55 | |
Victor Stinner | b492984 | 2016-01-23 12:55:11 +0100 | [diff] [blame] | 56 | <p><strong>{% trans %}Meta information:{% endtrans %}</strong></p> |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 57 | <table class="contentstable" align="center"><tr> |
| 58 | <td width="50%"> |
Victor Stinner | b492984 | 2016-01-23 12:55:11 +0100 | [diff] [blame] | 59 | <p class="biglink"><a class="biglink" href="{{ pathto("bugs") }}">{% trans %}Reporting bugs{% endtrans %}</a></p> |
| 60 | <p class="biglink"><a class="biglink" href="{{ pathto("about") }}">{% trans %}About the documentation{% endtrans %}</a></p> |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 61 | </td><td width="50%"> |
Victor Stinner | b492984 | 2016-01-23 12:55:11 +0100 | [diff] [blame] | 62 | <p class="biglink"><a class="biglink" href="{{ pathto("license") }}">{% trans %}History and License of Python{% endtrans %}</a></p> |
| 63 | <p class="biglink"><a class="biglink" href="{{ pathto("copyright") }}">{% trans %}Copyright{% endtrans %}</a></p> |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 64 | </td></tr> |
| 65 | </table> |
Georg Brandl | 1df986b | 2008-04-19 21:28:38 +0000 | [diff] [blame] | 66 | {% endblock %} |