Infra: remove two of the five instances of title at top of pages (#2532)
* Infra: remove one of the four instances of title at top of pages * Infra: remove another of the five instances of title at top of pages * Infra: but keep PEP number in the breadcrumbs
This commit is contained in:
parent
5949604187
commit
53d6d5987b
|
@ -309,9 +309,6 @@ dl.footnote > dd {
|
|||
#pep-sidebar ul a {
|
||||
text-decoration: none;
|
||||
}
|
||||
#toc-title {
|
||||
font-weight: bold;
|
||||
}
|
||||
#source {
|
||||
padding-bottom: 2rem;
|
||||
font-weight: bold;
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
<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>
|
||||
<li>{{ title.split("–")[0].strip() }}</li>
|
||||
</ul>
|
||||
<button aria-label="Toggle dark mode" onClick="toggleColourScheme()"></button>
|
||||
</header>
|
||||
|
@ -33,7 +33,6 @@
|
|||
</article>
|
||||
<nav id="pep-sidebar">
|
||||
<h2>Contents</h2>
|
||||
<p id="toc-title">{{ title }}</p>
|
||||
{{ toc }}
|
||||
<br />
|
||||
{%- if not sourcename.startswith("pep-0000") %}
|
||||
|
|
Loading…
Reference in New Issue