File tree Expand file tree Collapse file tree 3 files changed +36
-1
lines changed Expand file tree Collapse file tree 3 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 59
59
],
60
60
"show_prev_next" : False ,
61
61
"navbar_center" : ["mpl_nav_bar.html" ],
62
+ "native_site" : False
62
63
}
63
64
64
65
# Add any paths that contain custom static files (such as style sheets) here,
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env python
2
+ # coding: utf-8
3
+
4
+ # Copyright (c) Matplotlib developers.
5
+ # Distributed under the terms of the Modified BSD License.
6
+
7
+ version_info = (0 , 0 , 1 )
8
+ __version__ = "." .join (map (str , version_info ))
Original file line number Diff line number Diff line change 1
- < ul id ="navbar-main-elements " class ="navbar-nav ">
2
1
2
+ {% if theme_native_site %}
3
+ < ul id ="navbar-main-elements " class ="navbar-nav ">
3
4
< li class ="nav-item ">
4
5
< a class ="reference internal nav-link " href ="{{ pathto('plot_types/index') }} "> Plot types</ a >
5
6
</ li >
22
23
< a class ="reference internal nav-link " href ="{{ pathto('users/release_notes') }} "> Release notes</ a >
23
24
</ li >
24
25
</ ul >
26
+ {% else %}
27
+ < ul id ="navbar-main-elements " class ="navbar-nav ">
28
+ < li class ="nav-item ">
29
+ < a class ="reference internal nav-link " href ="https://matplotlib.org/plot_types/index "> Plot types</ a >
30
+ </ li >
31
+ < li class ="nav-item ">
32
+ < a class ="reference internal nav-link " href ="https://matplotlib.org/gallery/index "> Examples</ a >
33
+ </ li >
34
+ < li class ="nav-item ">
35
+ < a class ="reference internal nav-link " href ="https://matplotlib.org/tutorials/index "> Tutorials</ a >
36
+ </ li >
37
+ < li class ="nav-item ">
38
+ < a class ="reference internal nav-link " href ="https://matplotlib.org/api/index "> Reference</ a >
39
+ </ li >
40
+ < li class ="nav-item ">
41
+ < a class ="reference internal nav-link " href ="https://matplotlib.org/users/index "> Usage guide</ a >
42
+ </ li >
43
+ < li class ="nav-item ">
44
+ < a class ="reference internal nav-link " href ="https://matplotlib.org/devel/index "> Develop</ a >
45
+ </ li >
46
+ < li class ="nav-item ">
47
+ < a class ="reference internal nav-link " href ="https://matplotlib.org/users/release_notes "> Release notes</ a >
48
+ </ li >
49
+ </ ul >
50
+ {% endif %}
You can’t perform that action at this time.
0 commit comments