File size: 624 Bytes
08887ec
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{%- if theme_announcement == "unreleased" -%}
{% set header_classes = ["bd-header-announcement", "container-fluid"] %}
  <div class="{{ header_classes | join(' ') }}" id="unreleased-message">
    <div class="bd-header-announcement__content">
      You are reading documentation for the unreleased version of Matplotlib.
      <a href="https://matplotlib.org/search.html?q={{ title | striptags | urlencode }}&amp;check_keywords=yes&amp;area=default">
        Try searching for the released version of this page instead?
      </a>
    </div>
  </div>
{%- else -%}
  {%- extends "!sections/announcement.html" -%}
{%- endif %}