forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
126 lines (123 loc) · 6.69 KB
/
index.html
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{% extends "layout.html" %}
{% block body %}
<div class="container">
<div class="row">
<div class="col-md-9">
<section class="h-30 p-5 bg-light border rounded-3 text-center mb-4">
<h1>pandas</h1>
<p>
<strong>pandas</strong> is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool,<br/>
built on top of the <a href="https://www.python.org">Python</a> programming language.
</p>
<p>
<a class="btn btn-primary" href="{{ base_url }}getting_started.html">Install pandas now!</a>
</p>
</section>
<div class="row">
<div class="col-md-4">
<h5>Getting started</h5>
<ul>
<!-- <li><a href="{{ base_url }}/try.html">Try pandas online</a></li> -->
<li><a href="{{ base_url }}getting_started.html">Install pandas</a></li>
<li><a href="{{ base_url }}docs/getting_started/index.html">Getting started</a></li>
</ul>
</div>
<div class="col-md-4">
<h5>Documentation</h5>
<ul>
<li><a href="{{ base_url }}docs/user_guide/index.html">User guide</a></li>
<li><a href="{{ base_url }}docs/reference/index.html">API reference</a></li>
<li><a href="{{ base_url }}docs/development/index.html">Contributing to pandas</a></li>
<li><a href="{{ base_url }}docs/whatsnew/index.html">Release notes</a></li>
</ul>
</div>
<div class="col-md-4">
<h5>Community</h5>
<ul>
<li><a href="{{ base_url }}about/index.html">About pandas</a></li>
<li><a href="https://stackoverflow.com/questions/tagged/pandas">Ask a question</a></li>
<li><a href="{{ base_url }}community/ecosystem.html">Ecosystem</a></li>
</ul>
</div>
</div>
<section>
<h5>With the support of:</h5>
{% for row in sponsors.active | batch(6, "") %}
<div class="row mx-auto h-100">
{% for company in row %}
<div class="col-6 col-md-2">
{% if company %}
<a href="{{ company.url }}" target="_blank">
<img class="img-fluid img-thumnail py-5 mx-auto" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
</a>
{% endif %}
</div>
{% endfor %}
</div>
{% endfor %}
<p class="mt-4">The full list of companies supporting <i>pandas</i> is available in the <a href="{{ base_url }}about/sponsors.html">sponsors page</a>.
</section>
</div>
<div class="col-md-3">
{% if releases %}
<h4>Latest version: {{ releases[0].name }}</h4>
<ul>
<li><a href="{{ base_url }}docs/whatsnew/v{{ releases[0].name }}.html">What's new in {{ releases[0].name }}</a></li>
<li>Release date:<br/>{{ releases[0].published.strftime("%b %d, %Y") }}</li>
<li><a href="{{ base_url}}docs/">Documentation (web)</a></li>
<li><a href="{{ releases[0].url }}">Download source code</a></li>
</ul>
{% endif %}
<h4>Follow us</h4>
<div class="text-center">
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://t.me/s/pandas_dev">
<i class="follow-us-button fab fa-telegram"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/pandas_dev/">
<i class="follow-us-button fab fa-twitter"></i>
</a>
</li>
</ul>
</div>
<h4>Get the book</h4>
<p class="book">
<a href="https://amzn.to/3DyLaJc">
<img class="img-fluid" alt="Python for Data Analysis" src="{{ base_url }}static/img/pydata_book.gif"/>
</a>
</p>
{% if releases[1:5] %}
<h4>Previous versions</h4>
<ul>
{% for release in releases[1:5] %}
<li class="small">
{{ release.name }} ({{ release.published.strftime("%b %d, %Y") }})<br/>
<a href="https://pandas.pydata.org/pandas-docs/stable/whatsnew/{{ release.tag }}.html">changelog</a> |
<a href="https://pandas.pydata.org/pandas-docs/version/{{ release.name }}/">docs</a> |
<a href="{{ release.url }}">code</a>
</li>
{% endfor %}
</ul>
{% endif %}
{% if releases[5:] %}
<p class="text-center">
<a data-bs-toggle="collapse" href="#show-more-releases" role="button" aria-expanded="false" aria-controls="show-more-releases">Show more</a>
</p>
<ul id="show-more-releases" class="collapse">
{% for release in releases[5:] %}
<li class="small">
{{ release.name }} ({{ release.published.strftime("%Y-%m-%d") }})<br/>
<a href="https://pandas.pydata.org/pandas-docs/stable/whatsnew/{{ release.tag }}.html">changelog</a> |
<a href="https://pandas.pydata.org/pandas-docs/version/{{ release.name }}/">docs</a> |
<a href="{{ release.url }}">code</a>
</li>
{% endfor %}
</ul>
{% endif %}
</div>
</div>
</div>
{% endblock %}