48 lines
2.5 KiB
HTML
48 lines
2.5 KiB
HTML
{# Master template for simple pages (e.g. RST files) #}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="color-scheme" content="light dark" />
|
|
<title>{{ title + " | peps.python.org"|safe }}</title>
|
|
<link rel="shortcut icon" href="{{ pathto('_static/py.png', resource=True) }}"/>
|
|
<link rel="canonical" href="{{ pageurl|escape }}" />
|
|
<link rel="stylesheet" href="{{ pathto('_static/style.css', resource=True) }}" type="text/css" />
|
|
<link rel="stylesheet" href="{{ pathto('_static/mq.css', resource=True) }}" type="text/css" />
|
|
<link rel="stylesheet" href="{{ pathto('_static/dark.css', resource=True) }}" type="text/css" media="(prefers-color-scheme: dark)" id="css-dark"/>
|
|
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', resource=True) }}" type="text/css" media="(prefers-color-scheme: light)" id="pyg" />
|
|
<link rel="stylesheet" href="{{ pathto('_static/pygments_dark.css', resource=True) }}" type="text/css" media="(prefers-color-scheme: dark)" id="pyg-dark" />
|
|
<link rel="alternate" type="application/rss+xml" title="Latest PEPs" href="https://www.python.org/dev/peps/peps.rss">
|
|
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
|
|
<meta name="description" content="Python Enhancement Proposals (PEPs)"/>
|
|
</head>
|
|
<body>
|
|
<section id="pep-page-section">
|
|
<header>
|
|
<h1>Python Enhancement Proposals</h1>
|
|
<ul class="breadcrumbs">
|
|
<li><a href="https://www.python.org/" title="The Python Programming Language">Python</a> » </li>
|
|
<li><a href="{{ pathto("pep-0000") }}">PEP Index</a> » </li>
|
|
<li>{{ title }}</li>
|
|
</ul>
|
|
<button aria-label="Toggle dark mode" onClick="toggleColourScheme()"></button>
|
|
</header>
|
|
<article>
|
|
{{ body }}
|
|
</article>
|
|
<nav id="pep-sidebar">
|
|
<h2>Contents</h2>
|
|
<p id="toc-title">{{ title }}</p>
|
|
{{ toc }}
|
|
<br />
|
|
{%- if not sourcename.startswith("pep-0000") %}
|
|
<a id="source" href="https://github.com/python/peps/blob/main/{{sourcename}}">Page Source (GitHub)</a>
|
|
{%- endif %}
|
|
</nav>
|
|
</section>
|
|
<script src="{{ pathto('_static/colour_scheme.js', resource=True) }}"></script>
|
|
<script src="{{ pathto('_static/wrap_tables.js', resource=True) }}"></script>
|
|
</body>
|
|
</html>
|