1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
%(head_prefix)s
<!--
This approximates PyPI.org project page styling as of 8/2023,
and loads their compiled CSS that was in use at that time.
(Styling seems to change more often than basic page structure,
so to update, it may be sufficient to copy in the current
<link rel="stylesheet" ...> tags from any live package page.
Be sure to convert or escape any percent chars in copied urls,
to avoid "not enough arguments for format string" errors.)
This extends the docutils base template found at
${SITE_PACKAGES}/docutils/writers/html5_polyglot/template.txt
-->
<base href="https://pypi.org/">
%(head)s
<!-- template (stylesheet) omitted -->
<link rel="stylesheet" href="/static/css/warehouse-ltr.1dcaa944.css">
<link rel="stylesheet" href="/static/css/fontawesome.b50b476c.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+3:400,400italic,600,600italic,700,700italic|Source+Code+Pro:500">
<noscript>
<link rel="stylesheet" href="/static/css/noscript.0673c9ea.css">
</noscript>
<link rel="icon" href="/static/images/favicon.35549fe8.ico" type="image/x-icon">
%(body_prefix)s
<main id="#content">
<div class="banner">
<div class="package-header">
<div class="package-header__left">
%(body_pre_docinfo)s
%(docinfo)s
</div>
</div>
</div>
<div>
<div class="tabs-container">
<div class="vertical-tabs">
<div class="vertical-tabs__panel">
<div id="description" class="vertical-tabs__content">
<h2 class="page-title">Project description</h2>
<div class="project-description">
%(body)s
</div>
</div>
</div>
</div>
</div>
</div>
</main>
%(body_suffix)s
|